嗨,我想显示一些 X 类的帖子,但只显示这个类别的帖子,而不是孩子的类别。
global $post;
$tmp_post = $post;
$args = array( 'numberposts' =>-1, 'offset'=> 0, 'category' => 3 );
$myposts = get_posts($args);
foreach($myposts as $post) : setup_postdata($post);
我应该怎么做?谢谢!
嗨,我想显示一些 X 类的帖子,但只显示这个类别的帖子,而不是孩子的类别。
global $post;
$tmp_post = $post;
$args = array( 'numberposts' =>-1, 'offset'=> 0, 'category' => 3 );
$myposts = get_posts($args);
foreach($myposts as $post) : setup_postdata($post);
我应该怎么做?谢谢!