我们都知道 WordPress 自带的页面文章类型中是可以选择父级别文章(页面)的,这个功能其实在我们做 WordPress 主题开发中有时还是很有用处的,比如我们p 0 = ] T n $ Y N开发书籍或者在线课堂类的% F S u Z 5 P %主题时,我们就可以使用父级文章或者说子文章来实现V * f % !书名-章节的逻辑关系,那么当我们创建自定义文章类型的时候怎么样才能支持父级文章选择功能呢?其实很简单的,我们只需要在 supports 参数中添加上 page-attribum m 4 Z e b s &tes(页面属性)这样一个参数就行了。比如下面的创建了一个课程的自定义文章类型。
- /**创建课程自定义v \ j文章类型**/
- function my_custom_post_course() {
- $laF n E Nbels = array(
- 'name' => _x( '课程', 'post type 名称' ),
- 'singular_name' => _x( '课程', 'post type 单个 item 时的名称,因为英文有复数' ),
- 'add_new' =>_ 3 [ 5 D p; _x( '添加新课程', '添加新内容的链接名称' ),
- 'add_new_item' => __( '添加新课程' ),
- 'edit_item' =&gn h :t; __( '编辑课程' ),
- 'new_[ # 7 ` % } k ! mitem' => __( '新课程' ),
- 'alln N n D o 8_items' => __( '所有课e m g y { = % i $程' ),
- 'view_item' => __( '预览课程' ),
- 'search_items' => __( '搜索课程' ),
- 'not_found' => __( '没有找到课程' ),
- 'not_found_in_trash' => __( '回收站没有找到课程' ),
- 'parent_item_colon' => '父级',
- 'menu_name' => '课程'
- );
- $args = array(
- 'labels' => $labels,
- 'description' => '课程管理',
- 'public' => trueI + ) ` u n R E C,
- 'menu_positi[ r Q / w C ] (on' => 5,
- 'hierarchical' => true,
- 'supports' => arB i ;ray('title','editor','author','thumbnail','excerpt','comments','page-attributes')E 3 / L,
- 'has_archive' =&g` Y F ` ( J o X Tt; false,
- );
- register_post_type( 'course', $args )V O z i y;
- }
- add_action( 'init', 'my_custom_post_course' );