Wordpress - 列出子类别中自定义帖子类型的帖子

时间:2011-08-28 12:37:34

标签: wordpress custom-post-type

我有一个名为my-plays的自定义帖子类型,我在其中创建了短片和长片类别。我希望能够输出每个类别中的帖子列表......目前我只能找到只输出my-plays中所有帖子列表的代码。是否可以列出自定义帖子类型的帖子?

1 个答案:

答案 0 :(得分:1)

取自here

<?php

$args = array
(
    'numberposts' => 3,
    'category'    => array(48,43,49,46,47,44,51,50,42),
    'orderby'     => 'post_date',
    'order'       => 'ASC',
    'post_type'   => 'post',
    'post_status' => 'publish'
);
query_posts($args);

?>

<?php while (have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
相关问题