通过代码方式创建自定义文章类型是最灵活的方法。在主题的functions.php
文件中添加以下代码:
function create_custom_post_type() {
register_post_type('custom_type',
array(
'labels' => array(
'name' => __('自定义类型'),
'singular_name' => __('自定义项目')
),
'public' => true,
'has_archive' => true,
'supports' => array('title', 'editor', 'thumbnail')
)
);
}
add_action('init', 'create_custom_post_type');
使用Advanced Custom Fields插件或Meta Box插件可以快速添加自定义字段:
get_field()
函数调用字段值为自定义文章类型添加专属分类:
function create_custom_taxonomy() {
register_taxonomy(
'custom_category',
'custom_type',
array(
'label' => __('自定义分类'),
'rewrite' => array('slug' => 'custom-category'),
'hierarchical' => true
)
);
}
add_action('init', 'create_custom_taxonomy');
在主题目录下创建single-custom_type.php
文件来自定义单页显示样式,使用WordPress模板标签和自定义字段函数来构建独特的页面布局。
通过以上四个步骤的组合使用,您可以完全掌控WordPress的内容展示方式,打造独具特色的网站体验。