Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1212626
    Korbindall
    Participant

    Hello,

    My website shows following page title in the browser tabs and on the top left corner of the browser window: “Home – Korbin Dallas & Associates”

    I would like to change it. How can I do it?

    http://www.korbindallas.com
    Wordpress 4.6.1.
    X theme 4.6.4.
    Cornerstone 1.3.3.

    Thank you

    Kristof

    #1212940
    Paul R
    Moderator

    Hi Kristof,

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

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

    Hope that helps

  • <script> jQuery(function($){ $("#no-reply-1212626 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>