我正在尝试覆盖该功能(以升级安全的方式)
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' );
}