我试图覆盖该功能(以升级安全的方式)
twentyeleven_print_link_color_style
位于wp-content / themes / twentyeleven / inc / theme-options.php的第378行
我在我的子主题functions.php中尝试了以下内容,但是Twentyeleven_print_link_color_style仍在触发(我可以看到它正在输出的CSS)。
add_action( 'after_setup_theme', 'goodbye_internal_style_sheet' );
function goodbye_internal_style_sheet() {
remove_filter( 'wp_head', 'twentyeleven_print_link_color_style' );
}
答案 0 :(得分:0)
add_action( 'init', 'goodbye_internal_style_sheet' );
function goodbye_internal_style_sheet() {
remove_action( 'wp_head', 'twentyeleven_print_link_color_style' );
}