I am a total newbie at this, but I am trying to integrate featured content gallery into the feature site theme. I have placed the gallery where the feature-item.png was by replacing this in funtions.php
<?php } elseif (is_page_template('front-page.php') ) {
$rand = mt_rand(1, 2);
include "includes/feature-front-$rand.php";
with this:
<?php } elseif (is_page_template('front-page.php') ) ?>
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
My thinking is that I don't actually want it to grab the feature-front-x.php files as I'll just use the gallery for this (unless I can rotate those files with some navigation?). However, I would like to keep some static content in the feature-info div beside the gallery. Where do I place the code that?
Thanks