Wordpress CPT示例

Posted

tags:

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

  1. //CUSTOM POST TYPES DEFINITIONS
  2. add_action('init', 'cpt_activites_register', 1);
  3.  
  4. function cpt_activites_register() {
  5. $args = array(
  6. 'label' => __('Activités'),
  7. 'singular_label' => __('Activité'),
  8. '_builtin' => false,
  9. 'public' => true,
  10. 'show_ui' => true,
  11. 'capability_type' => 'post',
  12. 'hierarchical' => false,
  13. //'publicly_queryable' => false,
  14. //'exclude_from_search' => true,
  15. 'rewrite' => array("slug" => "activite"),
  16. 'supports' => array('title', 'editor', 'thumbnail')
  17. );
  18.  
  19. register_post_type( 'activite' , $args );
  20. }
  21.  
  22. add_action('init', 'cpt_restaurants_register', 1);
  23.  
  24. function cpt_restaurants_register() {
  25. $args = array(
  26. 'label' => __('Restaurants'),
  27. 'singular_label' => __('Restaurant'),
  28. '_builtin' => false,
  29. 'public' => true,
  30. 'show_ui' => true,
  31. 'capability_type' => 'post',
  32. 'hierarchical' => false,
  33. 'publicly_queryable' => false,
  34. 'exclude_from_search' => true,
  35. 'rewrite' => array("slug" => "restaurant"),
  36. 'supports' => array('title', 'editor', 'thumbnail')
  37. );
  38.  
  39. register_post_type( 'restaurant' , $args );
  40. }

以上是关于Wordpress CPT示例的主要内容,如果未能解决你的问题,请参考以下文章

SQL:Wordpress 用户按最新发布日期 (CPT) 排序

php [WordPress] - 在CPT页面上替换gettext

php 注册CPT的自定义分类。这允许Wordpress仅为CPT分配类别,然后您可以显示这些类别。

php WordPress自定义分类与CPT相同的Slug

markdown Wordpress Dashicons /自定义帖子类型图标/ CPT图标

markdown 资源:Wordpress Dashicons /自定义帖子类型图标/ CPT图标