0

我正在尝试覆盖该功能(以升级安全的方式)

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' );
}
4

1 回答 1

0
add_action( 'init', 'goodbye_internal_style_sheet' );
function goodbye_internal_style_sheet() {
    remove_action( 'wp_head', 'twentyeleven_print_link_color_style' );
}
  • 需要 remove_filter 而不是 action
  • 正在使用 add_action 挂钩错误的操作
于 2012-07-14T18:42:32.393 回答