为什么允许开发人员如此轻松地创建页面模板,而不允许发布相同的页面模板?
我有2个自定义帖子类型,名为Mathematics 和Mechanical 我用下面的函数做的。
add_action( \'init\', \'create_post_type\' );
function create_post_type() {
register_post_type( \'math_tuts\',
array(
\'labels\' => array(
\'name\' => __( \'Mathematics\' ),
\'singular_name\' => __( \'maths\' )
),
\'public\' => true,
\'has_archive\' => true,
)
);
register_post_type( \'mech_tuts\',
array(
\'labels\' => array(
\'name\' => __( \'Mechanical\' ),
\'singular_name\' => __( \'mech\' )
),
\'public\' => true,
\'has_archive\' => true,
)
);
}
我想给全幅布局和CSS样式
Mathematics 我想要一个不同的CSS样式和侧边栏
Mechanical. 我知道我可以通过使用插件来做到这一点,但我想避免使用插件,而是从头开始构建。我如何才能创建不同的布局,使机械和数学不会从
single.php?