billdinardo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: remove vertical bar to left of site titleHi. I found the following code in header.php. Is one of these vertical bars ‘|’ printing to the left of my site title in the blue tab? Thanks again for your help.
<title>
<?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
<?php if ( is_search() ) { ?><?php echo $s; ?> | <?php bloginfo(‘name’); ?><?php } ?>
<?php if ( is_single() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
<?php if ( is_page() ) { ?><?php wp_title(”); ?> | <?php bloginfo(‘name’); ?><?php } ?>
<?php if ( is_category() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php single_cat_title(); ?> | <?php bloginfo(‘name’); ?><?php } ?>
<?php if ( is_month() ) { ?><?php _e(‘Archive’, ‘elegant-grunge’) ?> <?php the_time(‘F’); ?> | <?php bloginfo(‘name’); ?><?php } ?>
<?php if ( is_tag() ) { ?><?php single_tag_title();?> | <?php bloginfo(‘name’); ?><?php } ?>
</title>Forum: Fixing WordPress
In reply to: remove vertical bar to left of site titleNo luck finding the above code in index.php or functions.php. Is there another fix to this problem? Thank you.
Forum: Fixing WordPress
In reply to: remove vertical bar to left of site titleThank you for responding. My problem really isn’t in the sidebar. It’s in the tab at the top of the page with my site title. A vertical bar ‘|’ appears to the left of my site title. Sorry if I’m not explaining it clearly.
I read where someone suggested deleting the ‘|’ artifact in the theme Realmac Software ’06 <title>%site_title% | %title%</title>. This occurs in the index.html. I can’t find this coding in the index.php code for my theme Elegant Grunge.
Thanks again for any help.