覆盖Twenty-Eleven主题选项链接颜色样式



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

twentyeleven_print_link_color_style

可在wp-content/themes/tentyelleeven/inc/theme-options.php 的第378行找到

我在我的子主题函数.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' );
}
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挂接错误的操作

最新更新