I am trying to make a newer front page for my site and I've been trying to add the latest updated blogs, created blogs amd recent comments to it.
For updated blogs, I am using WordPress MU Recent Posts and it works fine as far as I can see, but I cant exclude more then 1 blog and I'd like to exlude several.
$blogs = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs WHERE
public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' AND
last_updated >= DATE_SUB(CURRENT_DATE(), INTERVAL 5 DAY)
ORDER BY last_updated DESC");
I tried adding AND blog_id != 'x' but it only works for 1 blog, I cant add x, y, z :( How can I do this?
Also, are there any other plugins that do this? What I really need is to show Latest X posts, including a link to the post, the author and post time. Excluding the hello word posts (but I'll get to that later).
Someone please help :(