kenanflagler01
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Words appear twice in the title barIssue resolved. I ran an RSS validation and found that a category I had with ‘&’ was causing an error. I replaced ‘&’ with ‘,’ and it fixed the issue. Case closed.
Forum: Fixing WordPress
In reply to: Words appear twice in the title barWell, I thought this was fixed! Now the title bar looks good, but I’m getting an error message on the first line of each of my posts:
WARNING isterxmlexpatnonvalid->parse(): expat: mismatched tag [380/2/5]
Help!!!
Thanks in advance.
Forum: Fixing WordPress
In reply to: Words appear twice in the title barFixed my own issue. I just started testing things out and came up with a solution:
<title>
<?php bloginfo(‘name’); { echo ‘ | ‘; } ?>
<?php bloginfo(‘description’); { echo ‘ | ‘; } ?>
<?php wp_title(‘ ‘); ?>
</title>Forum: Themes and Templates
In reply to: header title showing up twiceI’m using this code in my header.php file:
<title><?php bloginfo(‘name’); ?> <?php wp_title(); ?><?php if (is_single() || is_page() || is_archive()) { wp_title(”,true); } else { bloginfo(‘name’); echo(‘ — ‘); bloginfo(‘description’); } ?>
</title>Blog address is http://www.missiongocostarica.org.
Any help would be appreciated!
Forum: Themes and Templates
In reply to: header title showing up twiceI have the same problem!