Adding title to each category page

March 2014 WordPress Theme
GK User
Wed Aug 27, 2014 8:30 am
Hi,
I want the category title to show up on each category page. How do I activate this?
thanks
User avatar
Senior Boarder

GK User
Wed Aug 27, 2014 11:55 am
Hi,

Edit News2/category.php file and add this fragment:
Code: Select all
<h1 class="page-title">
         <?php echo single_cat_title( '', false ); ?>
         </h1>
      
         <div class="page-desc">
            <?php echo category_description(); ?>
         </div>

after
Code: Select all
<div id="gk-category-containter">
aroudn line 38

now, you should add this code into css/override.css file:

Code: Select all
.category .page-title {
   padding: 32px;
}
User avatar
Moderator


cron