注册文章类型和分类法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注册文章类型和分类法相关的知识,希望对你有一定的参考价值。
Example shows how to register post types for :* Listings (defined as 'mysite_listings' with the rewrite slug 'lookup')
* Then registers the 'usa_states' taxonomy to the mysite_listings post type.
// custom post types function create_post_type() { register_post_type( 'mysite_listings', 'name' => __( 'Listings' ), 'singular_name' => __( 'Listing' ) ), 'public' => true, 'menu_position' => 5, ) ); } add_action( 'init', 'create_post_type' ); // taxonomies function listing_taxonomy() { register_taxonomy( 'usa_states', 'mysite_listings', 'hierarchical' => true, 'label' => 'US States', 'query_var' => true, ) ); } // add_action( 'init', 'listing_taxonomy' );
以上是关于注册文章类型和分类法的主要内容,如果未能解决你的问题,请参考以下文章