PHP Wordpress - 创建自定义分类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress - 创建自定义分类相关的知识,希望对你有一定的参考价值。

function create_theme_taxonomy() {
		

	register_taxonomy('ville-activite', array('activite'), array(
		'hierarchical' 	=> TRUE,
		'label' 			=> 'Villes - Activités',
		'singular_label'	=> 'Ville - Activités',
		'public' 			=> TRUE,
		'show_ui' 			=> TRUE,
		'show_tagcloud' 	=> FALSE,
		'rewrite' 			=> FALSE
	));
			
	register_taxonomy('ville-restaurant', array('restaurant'), array(
		'hierarchical' 	=> TRUE,
		'label' 			=> 'Villes - Restaurants',
		'singular_label'	=> 'Ville - Restaurants',
		'public' 			=> TRUE,
		'show_ui' 			=> TRUE,
		'show_tagcloud' 	=> FALSE,
		'rewrite' 			=> FALSE
	));
			
	register_taxonomy('ville', array('activite','restaurant'), array(
		'hierarchical' 	=> TRUE,
		'label' 			=> 'Villes',
		'singular_label'	=> 'Ville',
		'public' 			=> TRUE,
		'show_ui' 			=> TRUE,
		'show_tagcloud' 	=> FALSE,
		'rewrite' 			=> FALSE
	));
		
}
add_action( 'init', 'create_theme_taxonomy', 0 );

以上是关于PHP Wordpress - 创建自定义分类的主要内容,如果未能解决你的问题,请参考以下文章

如果存在分类法,则使用 Wordpress

php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式

php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式

php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式

php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式

PHP Wordpress:查询自定义分类