Hello!
Hopefully someone can help me out with this! I have already been able to edit my child theme’s function.php file to display a ‘Current Post’ Revolution Slide above_ my sidebar content as displayed here:
http://comdoc.wpengine.com/2017/03/02/xeroxs-global-imaging-systems-acquires-laser-resources/
I added this code to my functions.php to achieve this effect:
(Hopefully it helps someone in the future!)
//
// =============================================================================
// Slider revolution above header on post
// =============================================================================
//
add_action('x_before_view_renew__landmark-header', 'custom_blog_header01');
function custom_blog_header01(){
if (is_single()) {
echo do_shortcode('[rev_slider alias="POST-Header"]');
}
}
Currently, this works great and adds a Revolution Slider above all of my posts. Howerver, what I want to try doing is calling a different Revolution Slider (different design) based on post categories. Any chance someone can point me in the right direction?
Thank you in advance for any help! The support here is always great!
