Hello all. I'm new here, as well as a PHP noob. I'm trying to serve a .php snippet into the homepage of a site I'm developing. I've got that working, but I can't figure out how to load it ONLY on the homepage. My code is below, as well as a link to the work in progress:
function childtheme_include() { ?>
<?php include (STYLESHEETPATH . "/slider.php"); ?>
<?php }
add_action('thematic_belowheader','childtheme_include');
?>
Test site linkage:
http://evolutionlandmanagement.com/wp/
Big thanks for any help!!!