我正在使用SEO ULTIMATE PLUGIN
为每个页面生成动态标题标记,但对于一个特定页面,我需要显示自定义标题,并且不希望通过plugin
生成它。< / p>
我已停用特定网页的插件,但它限制了keywords
&amp; description
只有标题
代码1
function hide_seo_meta_from_detail_page()
{
remove_action('wp_head', array($GLOBALS['seo_ultimate'], 'template_head'), 1);
}
hide_seo_meta_from_detail_page();
我也试过add_filter
,但仍来自plugin
的代码2
add_filter( 'wp_title', 'set_page_title' );
function set_page_title( $orig_title ) {
$title = 'My custom Title';
return $title;
}
由于