• I dont use any kind of seo plugins on my site. The meta-title of the post is exactly not same as that in the post. Link to post

    Showing some weird number – along with website name (word 2 number).

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there,

    i see the following title tag on your site:

    <title>Ten Thousand Two In Numbers – Words 2 Numbers</title>

    I can’t see any weird numbers, and then - site title after the post title is the default behaviour of the wp_title function.

    But you can change that using this PHP Snippet and the document_title_parts filter:

    add_filter( 'document_title_parts', function( $title ) {
    
      unset( $title['site'] ); 
    
      return $title;
    
    }, 999, 1 );
    Thread Starter civilvicky

    (@civilvicky)

    Thank you

    You’re welcome

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Incorrect Meta Title’ is closed to new replies.