http://www.askapache.com/seo/404-google-wordpress-plugin.html http://wordpress.org/extend/plugins/askapache-google-404/ Can we use that plugin to use Google Search API to find related post in each post based on the URL but display not videos, image but only some result of web. Or everyone have anotther plugin or idea to do fix it.
You can use Google Search API to find related post of your site base on title in wordpress. You can check it in my website: http://pcwilleasy.co.cc/ or http://pcwilleasy.co.cc/technology-tips/use-google-search-api-to-find-related-post-in-each-post/ It have function like http://www.askapache.com/seo/404-google-wordpress-plugin.html but my code have display not videos, image only some result of your website. Every can me a idea that is good or not. Here is the code: Code: <p>Related post</p> <head> <script src="http://www.google.com/jsapi" type="text/javascript"> </script> <script language="Javascript" type="text/javascript"> google.load("search", "1"); function OnLoad() { var searchControl = new google.search.SearchControl(); searchControl.setResultSetSize(google.search.Search.SMALL_RESULTSET); var webSearch = new google.search.WebSearch(); webSearch.setSiteRestriction('pcwilleasy.co.cc'); options = new google.search.SearcherOptions(); options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN); searchControl.addSearcher(webSearch, options); searchControl.draw(document.getElementById("searchcontrol")); document.getElementById('searchcontrol').firstChild.style.width='100%'; searchControl.execute("<?php the_title(); ?>"); } google.setOnLoadCallback(OnLoad); </script> </head> <body> <div id="searchcontrol">Loading...</div> </body> </html> Code (markup): change the webSearch.setSiteRestriction('pcwilleasy.co.cc'); with your website.
Just wondering. If it is an AJAX call how exactly it is search engine friendly? Are you talking about serverside http call that works like AJAX call?
You can use Similar Sites API. It has the same functionality as a Google Related API but with Sites. this will enable you to get related sites based on the URLs you're in. You can see more here: dev.similarsites.com/similar-websites-api/