最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

filter out <title>

matteradmin7PV0评论

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 );

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far