Search Include

0

This plugin allows you to include search results from other Search engine (such as Google, Bing, Yahoo …) in your blog. In order to use this plugin, you need to add a call to the func

Version
Last updated
Active installations
WordPress Version
Tested up to
Rating
Total ratings
This plugin is outdated and might not be supported anymore.

Description

This plugin allows you to include search results from other Search engine (such as Google, Bing, Yahoo …) in your blog. In order to use this plugin, you need to add a call to the function _search_include_plugin() in your search result template file (search.php) You need to add the function call in the main div (id depends on your theme), for the default WP 3.3 theme (Twenty Eleven 1.2 by the WordPress team) : You need to edit the file search.php in the theme editor, and at the end of the file just replace :

        <?php endif; ?>         </div>     </div>      <?php get_sidebar(); ?> 

by

        <?php endif; ?>         <?php echo_search_include_plugin(); ?>         </div>     </div>     <?php get_sidebar(); ?> 

You can add specific Search Engines (see the documentation to see how to do that).