Homepage title "pipe" / "vertical line" at the end of title?

How do I remove this? https://bit.ly/2Q8DmEd

Hi,

To remove it, you can add the code below in your child theme’s functions.php file.

function x_wp_title( $title ) {
    if ( is_front_page() ) {
      return get_bloginfo( 'name' ) . '   ' . get_bloginfo( 'description' );
    } elseif ( is_feed() ) {
      return ' | RSS Feed';
    } else {
      return trim( $title ) . '  ' . get_bloginfo( 'name' ); 
    }
  }
  
   add_filter( 'wp_title', 'x_wp_title' );

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.