Wordpress-创建自定义分类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-创建自定义分类相关的知识,希望对你有一定的参考价值。
function create_theme_taxonomy() { 'hierarchical' => TRUE, 'label' => 'Villes - Activités', 'singular_label' => 'Ville - Activités', 'public' => TRUE, 'show_ui' => TRUE, 'show_tagcloud' => FALSE, 'rewrite' => FALSE )); 'hierarchical' => TRUE, 'label' => 'Villes - Restaurants', 'singular_label' => 'Ville - Restaurants', 'public' => TRUE, 'show_ui' => TRUE, 'show_tagcloud' => FALSE, 'rewrite' => FALSE )); 'hierarchical' => TRUE, 'label' => 'Villes', 'singular_label' => 'Ville', 'public' => TRUE, 'show_ui' => TRUE, 'show_tagcloud' => FALSE, 'rewrite' => FALSE )); } add_action( 'init', 'create_theme_taxonomy', 0 );
以上是关于Wordpress-创建自定义分类的主要内容,如果未能解决你的问题,请参考以下文章