Hello @jordanlackey,
Thanks for writing in!
If you are using Pro theme, you can create a bar in your footer which will be exclusive to the rev slider only. You can have several bars in the footer and the very first bar would be for the rev slider.
Anyways, if you need to add the rev slider hard-coded into the child theme, then perhaps this code code can be added in your child theme’s functions.php file:
// Add a custom slider to Blog index
// =============================================================================
function custom_slider() {
if( is_home ) : ?>
<div class="x-container custom-slider" style="clear: both;">
<?php echo do_shortcode('[rev_slider alias="post"]'); ?>
</div>
<?php endif;
}
add_action('x_before_colophon_begin','custom_slider');
// =============================================================================
Just do not forget to change the rev slider shortcode in the code above: [rev_slider alias="post"]
Hope this helps. Kindly let us know.