覆盖二十一个主题选项链接颜色样式

时间:2012-07-09 17:26:25

标签: wordpress

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

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

1 个答案:

答案 0 :(得分:0)

add_action( 'init', 'goodbye_internal_style_sheet' );
function goodbye_internal_style_sheet() {
    remove_action( 'wp_head', 'twentyeleven_print_link_color_style' );
}
  • 需要remove_filter而非行动
  • 使用add_action
  • 挂钩到错误的操作