Wordpress CPT示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress CPT示例相关的知识,希望对你有一定的参考价值。
//CUSTOM POST TYPES DEFINITIONS add_action('init', 'cpt_activites_register', 1); function cpt_activites_register() { 'label' => __('Activités'), 'singular_label' => __('Activité'), '_builtin' => false, 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, //'publicly_queryable' => false, //'exclude_from_search' => true, ); register_post_type( 'activite' , $args ); } add_action('init', 'cpt_restaurants_register', 1); function cpt_restaurants_register() { 'label' => __('Restaurants'), 'singular_label' => __('Restaurant'), '_builtin' => false, 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'publicly_queryable' => false, 'exclude_from_search' => true, ); register_post_type( 'restaurant' , $args ); }
以上是关于Wordpress CPT示例的主要内容,如果未能解决你的问题,请参考以下文章
SQL:Wordpress 用户按最新发布日期 (CPT) 排序
php [WordPress] - 在CPT页面上替换gettext
php 注册CPT的自定义分类。这允许Wordpress仅为CPT分配类别,然后您可以显示这些类别。