• Hi there-

    I recently made some edits to a page in wordpress and text the I typed and then deleted have appeared in the header of the website. I’ve done some searching and understand this may be an issue with a plugin in the header php but I’m not familiar enough with this type of code to know what that would be. Website is http://www.eldo.us. Header code below:

    <head profile=”http://gmpg.org/xfn/11″&gt;

    <title>
    <?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() ) { ?><?php wp_title(”); ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_category() ) { ?><?php single_cat_title(); ?> | Archive | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_month() ) { ?><?php the_time(‘F’); ?> | Archive | <? bloginfo(‘name’); ?><?php } ?>
    <?php if (function_exists(‘is_tag’)) { if ( is_tag() ) { ?><?php bloginfo(‘name’); ?> | Tag Archive | <?php single_tag_title(“”, true); } } ?>
    </title>

    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <link rel=”icon” type=”image/png” href=”<?php echo get_option(‘inuitypes_favicon’); ?>” />
    <link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>
    <?php if ( get_option(‘inuitypes_scripts_header’) <> “” ) { echo stripslashes(get_option(‘inuitypes_scripts_header’)); } ?>

    <?php wp_head(); ?>

    </head>

  • The topic ‘text from page post appearing in header’ is closed to new replies.