Hi,
I am using WonderPlugin Carousel plugin for my website but i only wanted to show it on the home page above the footer.
This is the code: <?php echo do_shortcode(‘[wonderplugin_carousel id=”1″]’); ?>
This is the sample code block:
<div class=”clear”></div>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<?php echo do_shortcode(‘[wonderplugin_carousel id=”1″]’); ?>
<?php
//Top Footer Widget
if(is_active_sidebar(‘footer-1’)){
?>
<section id=”section-footer” class=”clear”>
<div class=”store-wrapper”>
<?php dynamic_sidebar(‘footer-1’); ?>
</div>
</section>
<?php
}
//Footer Widget
if(is_active_sidebar(‘footer-2’)){
?>
<section id=”section-footer2″ class=”clear”>
<div class=”store-wrapper”>
<?php dynamic_sidebar(‘footer-2’); ?>
</div>
</section>
<?php
Thank you