Hi,
The code didn’t work because you are using PRO Headers.
To make it work, you can change the code to this.
add_action( 'x_after_view_global__slider-below', 'x_print_top_slider' );
function x_print_top_slider(){
if( is_singular('post') || is_category() ){
echo do_shortcode( '[rev_slider alias="Content_Page"]' );
}
}
or if you want it on top you can change it to this.
add_action( 'x_after_view_global__slider-above', 'x_print_top_slider' );
function x_print_top_slider(){
if( is_singular('post') || is_category() ){
echo do_shortcode( '[rev_slider alias="Content_Page"]' );
}
}
Hope this helps