我正在使用Wordpress杂志风格的主题(http://wordpress.org/themes/magazine-style) 除了默认的post格式外,它没有其他设置(没有库、旁白等)。
我想创建一个子主题,通过register\\u post\\u type()函数添加自定义的帖子类型。
在里面childtheme 我创建的文件夹文件:
风格。具有导入规则功能的css。php根据Codex(http://codex.wordpress.org/Post_Types) 我加入了functions.php:
<?php
add_action( \'init\', \'create_post_type\' );
function create_post_type() {
register_post_type( \'acme_product\',
array(
\'labels\' => array(
\'name\' => __( \'Products\' ),
\'singular_name\' => __( \'Product\' )
),
\'public\' => true,
\'has_archive\' => true,
)
);
}
?>
但在创建新帖子时,我看不到新的产品帖子类型(没有“格式”菜单)。
我还需要做什么才能在子主题中启用自定义帖子类型?