4
我在我的博客上安裝了wordpress SEO Yoast插件。我想避免使用SEO Yoast爲我的博客生成標題。有沒有什麼辦法可以刪除正在通過SEO Yoast插件應用wp_title()
的過濾器? 我想使用頁面標題作爲SEO標題。如何刪除SEO Yoast頁面標題過濾器?
add_filter('wp_title', 'te_before_filter_wp_title');
function te_before_filter_wp_title($title) {
echo $title;
//exit;
return $title;
}
add_filter('wp_title', 'te_after_filter_wp_title' ,9999);
function te_after_filter_wp_title($title) {
echo $title;
//exit;
return $title;
}
我已經編寫了這段代碼來測試標題。並且標題在te_before_filter_wp_title
和te_after_filter_wp_title
是不同的。所以它正在被SEO YOAST插件修改。