I’m sorry, my coding skills are not very extensive. I knew I had to call the widget somewhere, but I can’t figure out exactly where to put it. I previously looked in the index.php and couldn’t exactly see where it would go. This is the code from the index file:
<div class="content-area">
<div class="middle-align content_sidebar">
<div class="site-main" id="sitemain">
<?php
if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
endwhile;
// Previous/next post navigation.
precious_pagination();
else :
// If no content, include the "No posts found" template.
get_template_part( 'no-results', 'index' );
endif;
?>
</div>
<?php get_sidebar();?>
<div class="clear"></div>
</div>
</div>
After that it goes into all of the customizable options. Do I call for it somewhere in here? I’ve looked for the specific slider code in a bunch of other php files, but I can’t find it.