Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Immelting

    (@immelting)

    Good Morning,
    HOME PAGE
    I understand that I can goto the ADMN>>>GENERAL and change the title for BonitaBicycles to appear in the <title></title>
    But that also places BonitaBicycles in the top of my page.

    As far as the second link, I have no idea what they are speacking about.
    Deird

    I visited the first link which covers the home page.

    How do I access the “home” page to incert the <title><?php wp_title(”); ?></title>

    And within the Fucntions.php Where do i incert the “BonitaBicycles.Com”?

    Covering Homepage

    If you are using a custom homepage with custom loops and stuff or a custom front-page, you will have an empty wp_title. Here goes a neat hack to add the description/tagline at the wp_title place on homepage:

    <title><?php wp_title(”); ?></title>

    Then in your “functions.php” from theme file :

    add_filter( ‘wp_title’, ‘baw_hack_wp_title_for_home’ );
    function baw_hack_wp_title_for_home( $title )
    {
    if( empty( $title ) && ( is_home() || is_front_page() ) ) {
    return __( ‘Home’, ‘theme_domain’ ) . ‘ | ‘ . get_bloginfo( ‘description’ );
    }
    return $title;
    }

    Well I told you where to look, and there is everything you need.
    What do you specifically want to do ?

    Plus, I don’t know why you have “Archives” near category name, probably is some plugin, I see you use yoast seo, probably you can change something in its stettings

    Thread Starter Immelting

    (@immelting)

    @d4z_c0nf,
    I just love waking up to you in the morning.
    I did as you commanded, and changed the “yoast seo” and it worked like a charm.

    Thank you so much d4z_c0nf, Your faithful servant,
    Deird

    P.S.
    I was looking for a ay to add text to a “Category” page and found this wonderful plugin. CategoryTinymce

    Hope you can find it useful. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change “Title” name of “Home” page and “Archive” page’ is closed to new replies.