这些是自定义帖子类型。
您可以通过在页面加载时向WordPress注册来创建它们。您可以通过以下方式调用register\\u post\\u type来完成此操作:
你的主题functions.php
在init
在一个小插件(Highly Recommended method, good for data portability )您可以这样调用register\\u post\\u类型:
function codex_custom_init() {
$args = array( \'public\' => true, \'label\' => \'Books\' );
register_post_type( \'book\', $args );
}
add_action( \'init\', \'codex_custom_init\' );
Read more about register_post_type
You can also use this handy generator to create the code for you after giving it some information like a name and description
您可能还对阅读自定义分类法感兴趣(类别和标记是分类法)