我的问题不在于Wordpress的WPDB类,而在于MySQL语法。我正在尝试使以下序列工作:
帮助?谢谢。
答案 0 :(得分:2)
通过将类别ID或类别名称传递给http://codex.wordpress.org/Template_Tags/query_posts来使用query_posts函数。这一切都在链接上进行了解释。
评论后编辑:
您也可以使用get_posts http://codex.wordpress.org/Template_Tags/get_posts,AFAIK它们都返回数组。
$posts = get_posts('category=1');
foreach($posts as $post) {
echo $post->ID; // or whatever you want to do with it...
}