如何在页面中列出帖子类别名称和描述

时间:2014-05-06 作者:daxter

我想在主页中显示所有类别和描述,对于每个类别,划分如下:

类别名称Category Description

1 个回复
SO网友:Brad Dalton

使用wp_list_categories

以下是所有参数

<?php $args = array(
\'show_option_all\'    => \'\',
\'orderby\'            => \'name\',
\'order\'              => \'ASC\',
\'style\'              => \'list\',
\'show_count\'         => 0,
\'hide_empty\'         => 1,
\'use_desc_for_title\' => 1,
\'child_of\'           => 0,
\'feed\'               => \'\',
\'feed_type\'          => \'\',
\'feed_image\'         => \'\',
\'exclude\'            => \'\',
\'exclude_tree\'       => \'\',
\'include\'            => \'\',
\'hierarchical\'       => 1,
\'title_li\'           => __( \'Categories\' ),
\'show_option_none\'   => __( \'No categories\' ),
\'number\'             => null,
\'echo\'               => 1,
\'depth\'              => 0,
\'current_category\'   => 0,
\'pad_counts\'         => 0,
\'taxonomy\'           => \'category\',
\'walker\'             => null
); ?>

结束

相关推荐

WordPress Get_Categories&列出最近发布的内容缩略图

我正在尝试获取一个页面,列出所有子类别,然后显示它们的名称和该类别中最近帖子的缩略图。这是我得到的以下代码,它似乎从其他不在该类别中的帖子中获取一些缩略图,并重复这些类别。任何帮助都将不胜感激。<?php get_header(); ?> <div id=\"left_full\"> <?php $args = array( \'orderby\' => \'name\',