Need Help with JNews Theme WordPress
-
Hi All,
I’m using JNews WordPress theme and I would like to customize the Category pages to display Sub-Categories rather than posts, after doing a lot of research, I don’t think that functionality is part of the theme. I did come across the following information in the posted image but I am not sure how to go about implementing this. I’m very new to WordPress and development. Any help would be much appreciated!
I’m looking to build sections in the Categories and Sub-category pages.
- In Category pages: Create sections for each Sub-category
- In Sub-cat pages: Created section for relevant tags/posts
/***Info Provided by JNews Team**
************************************/add_filter(‘the_category’,’check_category’,99);
function check_category($content){
$pattern=’/\/category\//’;
$replacement=’category-‘;
preg_replace ( $pattern , $replacement , $content);
return $content;
}
- The topic ‘Need Help with JNews Theme WordPress’ is closed to new replies.