• <? bloginfo(‘name’); ?>

    i get that in the browser

    I understand its the title of the blogg
    but it worked before the latest update

    And there is a title set under settings
    still nothing in the browser

    any clues what to do?

Viewing 4 replies - 1 through 4 (of 4 total)
  • try and edit header.php and change <? bloginfo('name'); ?> into <?php bloginfo('name'); ?> (should be inbetween the <title> tags in the <head> area.)
    see if that resolves the problem ??

    Thread Starter coach_o

    (@coach_o)

    this is what i can find
    not sure where to edit…

    <?php if ( is_home() ) { ?><? bloginfo(‘name’); ?> | <?php bloginfo(‘description’); ?><?php } ?>

    <?php if ( is_search() ) { ?><? bloginfo(‘name’); ?> | Search Results<?php } ?>

    <?php if ( is_author() ) { ?><? bloginfo(‘name’); ?> | Author Archives<?php } ?>

    <?php if ( is_single() ) { ?><?php wp_title(”); ?> | <? bloginfo(‘name’); ?><?php } ?>

    <?php if ( is_page() ) { ?><? bloginfo(‘name’); ?> | <?php wp_title(”); ?><?php } ?>

    <?php if ( is_category() ) { ?><? bloginfo(‘name’); ?> | Archive | <?php single_cat_title(); ?><?php } ?>

    change all 6 occurrences of
    <? bloginfo('name'); ?>
    into
    <?php bloginfo('name'); ?>

    Thread Starter coach_o

    (@coach_o)

    that helped

    BIG thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘getting this in the browser <? bloginfo(‘name’); ?>’ is closed to new replies.