Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

分类法:lululu读后感

// Register Custom Taxonomy
function feeling_taxonomy() {

	$labels = array(
		'name'                       => _x( '读后感', 'Taxonomy General Name', 'text_domain' ),
		'singular_name'              => _x( '读后感', 'Taxonomy Singular Name', 'text_domain' ),
		'menu_name'                  => __( '读后感', 'text_domain' ),
		'all_items'                  => __( '全部条目', 'text_domain' ),
		'parent_item'                => __( '父条目', 'text_domain' ),
		'parent_item_colon'          => __( '父条目:', 'text_domain' ),
		'new_item_name'              => __( '新条目名', 'text_domain' ),
		'add_new_item'               => __( '新增条目', 'text_domain' ),
		'edit_item'                  => __( '编辑条目', 'text_domain' ),
		'update_item'                => __( '更新条目', 'text_domain' ),
		'separate_items_with_commas' => __( '逗号分割条目', 'text_domain' ),
		'search_items'               => __( '搜索条目', 'text_domain' ),
		'add_or_remove_items'        => __( '增加或删除条目', 'text_domain' ),
		'choose_from_most_used'      => __( '最常用条目', 'text_domain' ),
		'not_found'                  => __( '未找到', 'text_domain' ),
	);
	$rewrite = array(
		'slug'                       => 'f',
		'with_front'                 => true,
		'hierarchical'               => false,
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => true,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
		'rewrite'                    => $rewrite,
	);
	register_taxonomy( 'tax-feeling', array( 'post' ), $args );

}

// Hook into the 'init' action
add_action( 'init', 'feeling_taxonomy', 0 );