注册文章类型和分类法

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.
  1. // custom post types
  2. function create_post_type() {
  3. register_post_type(
  4. 'mysite_listings',
  5. 'labels' => array(
  6. 'name' => __( 'Listings' ),
  7. 'singular_name' => __( 'Listing' )
  8. ),
  9. 'public' => true,
  10. 'menu_position' => 5,
  11. 'rewrite' => array('slug' => 'lookup'),
  12. 'support' => array('title','author','editor','thumbnail','comments')
  13. )
  14. );
  15. }
  16.  
  17. add_action( 'init', 'create_post_type' );
  18.  
  19. // taxonomies
  20. function listing_taxonomy() {
  21. register_taxonomy(
  22. 'usa_states',
  23. 'mysite_listings',
  24. 'hierarchical' => true,
  25. 'label' => 'US States',
  26. 'query_var' => true,
  27. 'rewrite' => array('slug' => 'usa')
  28. )
  29. );
  30.  
  31. }
  32. //
  33. add_action( 'init', 'listing_taxonomy' );

以上是关于注册文章类型和分类法的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress注册自定义Post类型和自定义分类法

php 注册自定义帖子类型和分类

自定义帖子类型和分类法分页 404 错误

php 使用分类法注册新的帖子类型

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

用LSTM分类 MNIST