Posts Tagged ‘Feed’

AideRSS WordPress Plugin 0.2

06.26.2008 by Denis - 0 Comment
Posted in Plugin

Upgraded AideRSS WordPress Plugin to version 0.2, now the plugin can retrieve detail date (Diggs, Google Blog search, Comments, del.icio.us) from AideRSS API for top posts. check the demo below:

aiderss-plugin.jpg

This version need your server support CURL,if not, the output result of the plugin is same as verison 0.1.

After the plugin is uploaded and actived, you can add the following function in your template:

	aide_get_top_posts('month',10);

There are two parameters for the function:
period=[day|week|month|year|auto|length in seconds] : The period to return posts from.
num=[1-30] : The number of posts to return.

Dowload: wp-aiderss.zip

AideRSS WordPress Plugin

05.26.2008 by Denis - 2 Comments
Posted in Plugin

AideRSS is a service that helps you to prioritize news feeds based on the amount of social activity around them. Using an algorithm called PostRank, which tracks the number of comments, Digg votes, del.icio.us bookmarks and more, it will process any feed you enter and spit out feeds of All Posts, Good Posts, Great Posts, Best Posts and the Top 20.

AideRSS has released API and PHP Class. Base on the PHP Class, I created a simple WordPress plugin which can display the top posts in the specified time period.

After the plugin is uploaded and actived, you can add the following function in your template:

<ol>
	aide_get_top_posts('month',10);
</ol>

There are two parameters for the function:
period=[day|week|month|year|auto|length in seconds] : The period to return posts from.
num=[1-30] : The number of posts to return.

Dowload: wp-aiderss.zip