Page title formatting

Hello

When you view my page the way it is now the browser shows it’s title in the tab as “Mother Culture |”

How/where can I change this so that it only says “Mother Culture” without the “|” character?

Thanks so much!

Hi,

To achieve that, 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' );
    } elseif ( is_feed() ) {
      return ' | RSS Feed';
    } else {
      return trim( $title ) . ' | ' . get_bloginfo( 'name' ); 
    }

  }
  add_filter( 'wp_title', 'x_wp_title' );

Hope that helps.