有人能告诉我怎样才能做到这一点吗?我有一个循环,我想创建另一个循环来查找同一类别的其他帖子:但这不起作用:
<?php while ( have_posts() ) : the_post(); ?>
<?php /* How to display all other posts. */ ?>
<?php
$monid = the_ID();
$cat = get_the_category($monid); //this works
$args = array( \'numberposts\' => 5, \'offset\'=> 1, \'category\' => $cat );
$myposts = get_posts( $args );
var_dump($myposts); //this don\'t ?>
<ul>
</ul>
我找到了这个主题Loop inside the loop 但这对我来说并不管用:有什么帮助吗?非常感谢