=== Plugin Name === Tags: twitter, AJAX Requires at least: 2.1 Tested up to: 2.9.1 Stable tag: 0.1 AJAXed Twitter for Wordpress displays your public timeline in your blog. == Description == This plugin is based on ["Twitter for Wordpress"](http://wordpress.org/extend/plugins/twitter-for-wordpress/ "Wordpress Plugins") 1.9.7 by [Ricardo González](http://rick.jinlabs.com/ "Ricardos Homepage"). It needs [MooTools](http://mootools.net/) to send the XMLHttpRequest, but will later probably also feature a plugin for jQuery. == Installation == To learn how to configure this plugin, read the docs for "Twitter for Wordpress", it uses the same options, but passed as array. You'll need a PHP-file that can be called by the JavaScript part, for example you could put a file named "twitter.php" into your theme folder. `if (!defined('DB_NAME')) { require_once("../../../wp-config.php"); } echo AJAXedTwitter::messages(array( 'username' => 'username', 'error_id' => 'twitter-error' ));` I did not include a release of MooTools, you will hav to add a script tag *before wp_head();* like this: `` The Twitter-class is easy to configure and already enqueued by the plugin. `var twitter = new Twitter('tweets', { url: '/blog/wp-content/themes/yourtheme/twitter.php', errorID: 'twitter-error', retries: 2, animate: true });` In this example the element 'tweets' is replaced by you public timeline after the page is fully loaded. Additionally to the CSS classes provided by "Twitter for Wordpress" this plugins provides first/last for list items. For more details visit [the plugin hompage](http://derhofbauer.at/blog/ajaxed-twitter-plugin-for-wordpress/ "derhofbauer.at").