Custom template for category

Posted in: Newsmag
Post count: 90

Hello, I want to know if it’s possible to customize the template of a specific category. Specifically, I want to add a table and some images at the beginning of the “content section”, before the feed of posts.

Post count: 6535

Hi

You can use do_shortcode function in category.php file to display a custom content for a specific category. First you have to create the content in Visual Composer, then switch in backend editor, copy the shortcode and paste it inside do_shortcode function. Here is an example: http://screencast.com/t/TjJpQicbChttp://screencast.com/t/1DvdbdCzzhttp://screencast.com/t/3Wl63bkLU

<?php
if (is_category('category-id/slug/name')) {
    echo do_shortcode('your-shortcode-goes-here');
}?>

You have to add in above condition the name/id/slug fur the category where you want to display your custom content.

I hope this helps.
Thanks!

  • This reply was modified 10 years by Andrei L..
  • This reply was modified 10 years by Andrei L..
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.