如何从定制器中删除静态首页选项 时间:2015-01-31 作者:Jack 在Wordpress 4.1的主题定制器中Static Front Page 选项我已将我的主题设置为具有自定义首页(通过front-page.php 所以我不想在这里使用这个选项。如何删除它? 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 结束 文章导航