Tag pages with slider

Posted in: Newsmag
Post count: 1

Hello

My home page has a slider. My categories pages also have a slider.

Now, when I click on a tag to see the articles with that tag, I see a page with a list of articles. I would like to have a more elaborate page for tags also with a slider.

Is that possible?

Thank you for your assistance

Post count: 6535

Hi

This is possible only by editing theme’s core files. Basically you can use do_shortcode function in tag.php file to echo out the any shortcode. Here is an example: http://screencast.com/t/s57r7YsPsc7http://screencast.com/t/7XBJjINJwahttp://screencast.com/t/Mf12GLqR

    <?php
    if (is_tag('tag1')) {
        echo do_shortcode('[vc_row][vc_column][td_block_14 category_id="33" limit="3"][/vc_column][/vc_row]');
    }
    ?>

I’ve used is_tag() function to display this shortcode only on tag1 tag page. You can remove the condition if you want the same shortcode on all tag pages or you can extend it if you a specific shortcode for each tag page. Just pass tag’s name as a parameter for is_tag() function.

Hope this helps.
Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.