J. BTON ‘s Recent Posts mu-plugin for WordPress MU

[JAPANESE]

Download the code , and FTP-upload the file to /wp-ontent/mu-plugin/. It will work as soon as file uploaded.

**FEATURE**

Parameter explanations
$how_many: how many recent posts are being displayed
$how_long: time frame to choose recent posts from (in days)
$cate: category ID to be selected
$limit: how many posts should be displayed from each category
$titleOnly: true (only title of post is displayed) OR false (title of post and name of blog are displayed)
$begin_wrap: customise the start html code to adapt to different themes
$end_wrap: customise the end html code to adapt to different themes

Sample call: bton_recent_posts(8, 30, 5, 2, true, ‘<li>’, ‘</li>’); >> total 8 most recent entries over the past 30 days, from cateID 5, 2 entries from each blog, displaying titles only
write code in template
ex. <ul><?php bton_recent_posts(8, 30, 5, 2, true, ‘<li class=”pageposts_list”>’, ‘</li>’); ?></ul>
And you can also add style in your css files like this.
li.pageposts_list {list-mark-style:none;}
span.pageposts_cont{font-size:small; color:#333;}
span.pageposts_date {font-size:x-small; color:#ccc;}
span.pageposts_blog {font-size:x-small; color:#ccc;}

->>[DOWNLOAD](bton_recent_posts_1.0.zip:2KB)

/*Now, Ver.2 available*/