I asked for help regarding the removal of "Blog Title" and a kind soul gave me a code that got rid of it. How can I get rid of the Tagline from the top of the page? Any help would be appreciated.
I asked for help regarding the removal of "Blog Title" and a kind soul gave me a code that got rid of it. How can I get rid of the Tagline from the top of the page? Any help would be appreciated.
I think you are talking about the title from address bar, because I see no tagline in your header.
If I am correct, go in header.php and search for
<title> you have some code here, post it back on forum if you are not sure if you want to change it</title>
You need to have there:
<?php the_title(); ?> | <?php bloginfo(name); ?>
where:
<?php the_title(); ?> - is title of page/post
| - is delimiter can also be -
<?php bloginfo(name); ?>- is the blog title. you can replace this with any custom text
This topic has been closed to new replies.