In the API Wiki of Twitter will describe how the results of searches as Atom feeds or JSON format will be returned.
- Find tweets that contain a specific word: http://search.twitter.com/search.atom?q=twitter
- Find the tweets of a user: http://search.twitter.com/search.atom?q=from% 3Aalexiskold
- Find tweets that are directed to a user: user: http://search.twitter.com/search.atom?q=to% 3Atechcrunch
- Find tweets referencing a user: http://search.twitter.com/search.atom?q =% 40mashable
Fortunately, there is the RSS reader Simplepie who supports nuclear as a WordPress plugin . Would you like to Twitter search results to your blog embed , it is first necessary to install that plugin and then create a new page, for example:
<Php / * Template name: Twitter Page * / ?> <Php get_header (); ?> <div class="content"> <Php SimplePieWP echo ('search.twitter.com / search.atom? q = your% 20searchterms' array ('items' => 30, 'cache_duration' => 1800, 'date_format' => 'j MY, g: ia')); ?> </ Div> <Php get_footer (); ?>
Twitter Search Wordpress integration
Twitter 's API Wiki Describes how results of search queries are returned as Atom feeds or in JSON format:
- Find tweets containing a word: http://search.twitter.com/search.atom?q=twitter
- Find tweets from a user: http://search.twitter.com/search.atom?q=from% 3Aalexiskold
- Find tweets to a user: http://search.twitter.com/search.atom?q=to% 3Atechcrunch
- Find tweets referencing a user: http://search.twitter.com/search.atom?q =% 40mashable
Fortunately the ATOM compatible RSS reader Simplepie exists as wordpress- plugin . If you plan to integrate Twitter search results in a blog first you have to install the plugin and then to create a new page (for example source code for a new twitter page is included here).

It's quite in here! Why not leave a response ?