Add rev slider to blog categories pages

Is there a way to add a rev slider image above catagory page. I have a press release page as a catagory link and I wanted to add Header slider above it.

Hi,

You can add a slider to that page using an action and revslider shortcode.

Please add the code below in your child theme’s functions.php

function add_my_slider() {
      if(is_category( '78' )) {
            echo do_shortcode('[rev_slider alias="test"]');
     }
}

add_action( 'action_name', 'add_my_slider', 10 );

Change [rev_slider alias="test"] with your slide shortcode.

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.