如何按特定用户ID获取所有视频帖子

时间:2014-07-22 14:14:44

标签: php wordpress

我需要任何特定用户发布的视频。

我使用了以下代码,但仍显示所有帖子

$args = array ( 'post_author' => $id, 'post_type' => 'videos', 'posts_per_page' => 100,); 
$posts_array = get_posts( $args );

1 个答案:

答案 0 :(得分:1)

您可以像这样使用WP_Query

$query = new WP_Query( 'author=' . $id . '&post_type=video&posts_per_page=100');

while($query->have_posts()) { 
   the_post();

   // Do you magic here
}
相关问题