I want to be able to customize my header on individual posts on my blogspot website. Currently, the header is set to:
(Post Name) Free Craft Patterns, Templates, and DIY Tutorials. I want to take away the plural from these, without affecting my other main pages. Is there a way to do this? Here is my existing code:
<title>
<?php if ( is_home() ) { ?> <?php } ?>
<?php echo ucwords(wp_title('',true)); ?> <?php echo ucwords(get_bloginfo('name')); ?>
</title>
1 Answer