使用特定页面的自定义URL覆盖插件生成的URL

时间:2014-12-16 10:02:43

标签: php wordpress plugins seo title

我正在使用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;
 }

由于

0 个答案:

没有答案