I was looking for a way where we can display the WordPress Category descriptions on the category pages. Then to have a different kind of post display that is more attractive and intuitive.I created a new file in my theme folder named category.php. There is more description about the category templates at the WordPress Codex
So I checked out the codex and searched for it.
First of all I implemented the Category name.
<?php single_cat_title('Displaying results from'); ?>
Then I displayed the category description that can be helpful in SEO as well.
<?php echo category_description(); ?>
Now I wanted to display a featured post and then the other posts in the list format. So I used the following code.




















































