hi,
i've changed the title of my blog, but i don't know how can i do to remove the '>>' (»)at the start.
Can someone help me ?
thanks
the site is:
http://www.calabrian-cooking.com/index.php
hi,
i've changed the title of my blog, but i don't know how can i do to remove the '>>' (»)at the start.
Can someone help me ?
thanks
the site is:
http://www.calabrian-cooking.com/index.php
Between the title tags in your header.php, replace the code with the following:
For only the blogs title on everypage:
<?php bloginfo('name'); ?>
For the blogs title followed by the post name:
<?php bloginfo('name'); ?> <?php wp_title(); ?>
For something a bit flashier:
<?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?>
Hope that helps. :)
This topic has been closed to new replies.