I did not write this code, but it looks okay to me. It is used in a site template and I believe its purpose is to call and display testimonials, but only if the current page being displayed is the home page. It is not working. It is displaying the testimonials on all pages. Any ideas?
<?php if(is_front_page()): ?><div class="testimonials">
<h2>Testimonials</h2>
<?php echo do_shortcode('[testimonials_slider refresh_interval=10 show_controls=true]'); ?>
</div>
<?php else: ?>
<?php get_sidebar(); ?>
<?php endif; ?>