列出Wordpress自定义分类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列出Wordpress自定义分类相关的知识,希望对你有一定的参考价值。
Found on the wordpress.org forums, courtesy of snails07
//list terms in a given taxonomy using wp_list_categories (also useful as a widget if using a php Code plugin) $taxonomy = 'eventcategory'; $orderby = 'name'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; $empty = 0; $args = array( 'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title, 'hide_empty' => $empty ); <ul> <?php wp_list_categories( $args ); ?> </ul>
以上是关于列出Wordpress自定义分类的主要内容,如果未能解决你的问题,请参考以下文章
全代码实现WordPress分类目录和标签添加新的自定义字段