0

我有一个类别有 600 个子类别,有没有办法列出所有子类别,每个子类别都有一个帖子?

  • sub-1 最新帖子标题
  • sub-2 最新帖子标题
  • sub-3 最新帖子标题
  • sub-4 最新帖子标题
  • sub-5 最新帖子标题
  • sub-6 最新帖子标题
  • sub-7 最新帖子标题
  • sub-8 最新帖子标题
4

1 回答 1

1

为了检索所有子类别,请使用get_categories().

例子:

$args = array(
'type'                     => 'post',
'parent'                   => 'your_parent_category_id',
'orderby'                  => 'name',
'order'                    => 'ASC' );

$your_categories = get_categories( $args );

要获取帖子,请遍历结果并使用get_posts()

$args = array(
    'numberposts'     => 1,
    'offset'          => 0,
    'category'        => your_subcategories,
    'orderby'         => 'post_date',
    'order'           => 'DESC',
    'post_type'       => 'post',
    'post_status'     => 'publish' );

$your_posts = get_posts( $args );
于 2012-10-20T08:49:57.330 回答