我们都知道 WordPress 自带的页面文章类型中是可以选择父级别文章(页面)的,这个功能其实在我们做 WordPress 主题开发中有时还是很有用处的,比如我们开发书籍或者在线课堂类的主题时,我们就可以使用父级文章或者说子文章来实现书名-章节的逻辑关系,那么当我们创建自定义文章类型的时候怎么样才能支持父级文章选择功能呢?其实很简单的,我们只需要在 supports 参数中添加上 page-attributes(页面属性)这样一个参数就行了。比如下面的创建了一个课程的自定义文章类型。
/**创建课程自定义文章类型**/
function my_custom_post_course() {
$labels = array(
'name' => _x( '课程', 'post type 名称' ),
'singular_name' => _x( '课程', 'post type 单个 item 时的名称,因为英文有复数' ),
'add_new' => _x( '添加新课程', '添加新内容的链接名称' ),
'add_new_item' => __( '添加新课程' ),
'edit_item' => __( '编辑课程' ),
'new_item' => __( '新课程' ),
'all_items' => __( '所有课程' ),
'view_item' => __( '预览课程' ),
'search_items' => __( '搜索课程' ),
'not_found' => __( '没有找到课程' ),
'not_found_in_trash' => __( '回收站没有找到课程' ),
'parent_item_colon' => '父级',
'menu_name' => '课程'
);
$args = array(
'labels' => $labels,
'description' => '课程管理',
'public' => true,
'menu_position' => 5,
'hierarchical' => true,
'supports' => array('title','editor','author','thumbnail','excerpt','comments','page-attributes'),
'has_archive' => false,
);
register_post_type( 'course', $args );
}
add_action( 'init', 'my_custom_post_course' );
专业提供WordPress主题安装、深度汉化、加速优化等各类网站建设服务,详询在线客服!