So I can't seem to get the dynamic content gallery slider to run on just the front page of a blog. Is this only possible with a static home page? http://pidginmagazine.com If you go to the second page of blog posts the slider stays. I have tried variations but am not sure what I am missing.
Below is the current code I have.
<?php
function slider() {
if (is_home() || is_front_page()) { ?>
<div id="main"><div id="container"><div id="index-top">
<?php dynamic_content_gallery(); ?>
</div> </div> </div><?php
}
}
add_action('thematic_above_indexloop','slider');
?>
Thanks in advance for any help!
Jo