我不明白为什么下面的代码总是显示相同数量的返回post=5。当我更改$variable
对其他人的价值post id
一个作者与另一个作者的帖子author_id
, 我总是收到5篇返回的帖子,即使作者有几十篇帖子。我做错了什么?
$variable=328;
$post = get_post($variable);
$author = get_userdata($post->post_author);
$args = array(
\'author\' => $author->id );
global $post;
$myposts = get_posts( $args );
$count= count($myposts);
echo \'<pre dir="ltr">\';
print_r($myposts);
echo \'</pre>\';
echo $count;
非常感谢你的帮助。