最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

filter out <title>

programmeradmin1浏览0评论

Trying to remove the from a specific page so I don't have duplicates. Is there away to filter these out in the functions? I have already removed the canonical but wasn't able to reproduce the same with title using wp_title or wpseo_title.

function remove_canonical() {

    if ( is_page(12891) ) {
        add_filter( 'wpseo_canonical', '__return_false',  10, 1 );
        add_filter( 'wpseo_title', '__return_false' );
        add_filter( 'wp_title', '__return_false' );
    }
}
add_action('wp', 'remove_canonical');

Trying to remove the from a specific page so I don't have duplicates. Is there away to filter these out in the functions? I have already removed the canonical but wasn't able to reproduce the same with title using wp_title or wpseo_title.

function remove_canonical() {

    if ( is_page(12891) ) {
        add_filter( 'wpseo_canonical', '__return_false',  10, 1 );
        add_filter( 'wpseo_title', '__return_false' );
        add_filter( 'wp_title', '__return_false' );
    }
}
add_action('wp', 'remove_canonical');
Share Improve this question edited Mar 31, 2019 at 17:40 Krzysiek Dróżdż 25.6k9 gold badges53 silver badges74 bronze badges asked Mar 31, 2019 at 17:17 JasonJason 1 4
  • By 'title`, are you thinking of the text that appears above the browser page (in or near the window frame, in the tab, etc.), or the headline that typically appears below the masthead and site navigation, and above the main content? – Loren Rosen Commented Apr 1, 2019 at 0:29
  • The actual HTML title tag <title>stuff here</title> – Jason Commented Apr 1, 2019 at 12:14
  • The first two filters are Yoast things, and off-topic here. But I think returning false just disables them. Anyway, it probably doesn't matter. The last filter should return a string, so you probably want '__return_empty_string'. That said, I might imagine that returning a non-string would have the same effect. But perhaps instead it has no effect at all (that is, the string is unchanged). If it still doesn't work, I'd try changing the priority. You want this to run last, so the priority number should be large. – Loren Rosen Commented Apr 1, 2019 at 15:13
  • Well thinking through it I don't want to filter the result or replace it, I really want to disable it. remove_action( 'wp_head', '_wp_render_title_tag', 1 ); works perfectly in this instance. – Jason Commented Apr 1, 2019 at 15:51
Add a comment  | 

1 Answer 1

Reset to default 0

Removing the action is really what I intended as I'm not replacing the title. changing my last line to this works for what I was intending.

remove_action( 'wp_head', '_wp_render_title_tag', 1 );

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论