如何从定制器中删除静态首页选项

时间:2015-01-31 作者:Jack

在Wordpress 4.1的主题定制器中Static Front Page 选项我已将我的主题设置为具有自定义首页(通过front-page.php 所以我不想在这里使用这个选项。

enter image description here

如何删除它?

1 个回复
最合适的回答,由SO网友:Gyanendra Giri 整理而成

此代码将完成此工作。

add_action(\'customize_register\', \'themename_customize_register\');
function themename_customize_register($wp_customize) {
  $wp_customize->remove_section( \'static_front_page\' );
}
它将删除静态首页选项。

详细信息here

结束

相关推荐

Admin Theme customization

我遵循wordpress codex网站上关于通过插件创建管理主题的说明。我激活了插件,但我的样式表没有包含在<head>.. 这是我的代码:add_action( \'admin_init\', \'kd_plugin_admin_init\' ); add_action( \'admin_menu\', \'kd_plugin_admin_menu\' ); function kd_plugin_admin_init() { /* Register