将系列代码放到主题目录的functions.php文件里即可。
<?php add_action( 'customize_register', 'prefix_remove_css_section', 15 ); /** * Remove the additional CSS section, introduced in 4.7, from the Customizer. * @param $wp_customize WP_Customize_Manager */ function prefix_remove_css_section( $wp_customize ) { $wp_customize->remove_section( 'custom_css' ); }
评论区
发表新的留言
您可以留言提出您的疑问或建议。
您的留言得到回复时,会通过您填写的邮箱提醒您。