Hi,
I'd like to add nivo slider to my front page and dynamic headers(WP plugin) for all inner pages. I can add one or (both)easily to the thematic_header, so it shows both on all pages, but how would I construct PHP to tell it to only show the Nivo on front page (and not inner pages) and the dynamic header on inner pages(not front page).
I am PHP rookie, I have tried to work it out by looking through forums.. but I'm struggling.
This is code added to header-extensions.php for dynamic header (placed underneath the #access div):
<?php // added for dynamic header
if(function_exists('show_media_header')){
echo ' <div id="mediaheader">';
show_media_header();
echo '</div>';
} ?>
and this is the Nivo slider code in header-extensions.php:
<div id="slider"><?php echo do_shortcode('[nivoslider id="190"]'); ?></div>
Any help would be muchely appreciated!! Loving Thematic BTW! Thanks for any help in advance!