=== Plugin Name === Tags: twitter, AJAX Requires at least: 2.9.1 Tested up to: 2.9.1 Stable tag: 0.3.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 and automatically enqueue it. == Installation == I did not include a release of MooTools, you will have to add a script tag *before wp_head();* like this: `` If you don't use the widget, 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' ));` 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 loaded. Additionally to the CSS classes provided by "Twitter for Wordpress" this plugins provides first/last for list items. For more details (options, configuration) visit [the plugin hompage](http://derhofbauer.at/blog/ajaxed-twitter-plugin-for-wordpress/ "derhofbauer.at"). == Changelog == = 0.3.1 = * Fixed problem with forgotten timeout definition = 0.3 = * Implemented own copy of fetch_rss() for seperated cache handling * Added option "cache expiry" (cache-age), defaulting to half an hour