2012-07-09 88 views
0

我試圖重寫功能(在升級安全的方式)覆蓋二十十一主題選項鍊接的顏色風格

twentyeleven_print_link_color_style 

這是對的wp-content 378線發現/主題/ twentyeleven/INC /主題-options.php

我在我的子主題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
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