How to see cat name instead of blog name?
-
Hello,
I want to see my category name instead of my blog name when clicked on categories. So I changed the header.php in almost spring theme as below:
original:
<div id=”header”>
<h1>“><?php bloginfo(‘name’); ?></h1>
</div>modified:
<div id=”header”>
<h1>“>
<?php
if (single_cat_title() == “”) {
echo “My Blog Name”;
}
else{
single_cat_title();
}
?></h1>
</div>The Result is below when I clicked the category name:
My Category NameMy Blog Name
I only want the category name how?
Thank you,
Leo
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to see cat name instead of blog name?’ is closed to new replies.