New get_posts function, for multiple WP loops.

git-svn-id: http://svn.automattic.com/wordpress/trunk@902 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-02-21 14:10:07 +00:00
parent 5e9c38f1f4
commit dbba7a2d8c

View File

@ -1469,4 +1469,21 @@ function remove_slashes($string) {
return stripslashes(stripslashes($string));
}
function get_posts($args) {
global $wpdb, $tableposts;
parse_str($args, $r);
if (!isset($r['numberposts'])) $r['numberposts'] = 5;
if (!isset($r['offset'])) $r['offset'] = 0;
// The following not implemented yet
if (!isset($r['category'])) $r['category'] = '';
if (!isset($r['orderby'])) $r['orderby'] = '';
if (!isset($r['order'])) $r['order'] = '';
$now = current_time('mysql');
$posts = $wpdb->get_results("SELECT DISTINCT * FROM $tableposts WHERE post_date <= '$now' AND (post_status = 'publish') GROUP BY $tableposts.ID ORDER BY post_date DESC LIMIT " . $r['offset'] . ',' . $r['numberposts']);
return $posts;
}
?>