File: /home/slyfwmm/incastiglionfiorentino/wp-content/themes/amplify/nivoslider.php
<div class="feature">
<div class="feature_entry">
<!-- nivo slider -->
<div id="slider">
<!-- SLIDER BEGIN -->
<?php
$nivo_cat = get_option('bb_nivo_cat');
if($nivo_cat == NULL || $nivo_cat == 'Choose a category') {$nivo_cat = 'slider';}
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query('category_name=' . $nivo_cat . '&showposts=5');
$count = 0;
while ($wp_query->have_posts()) : $wp_query->the_post();
$count++;
?>
<!-- displays the slider posts -->
<a href="<?php if(get_field('external_link_value') != NULL) {echo get_field('external_link_value');} else{the_permalink();} ?>" title="<?php the_title(); ?>"><img src="<?php echo get_template_directory_uri(); ?>/scripts/timthumb.php?src=<?php if (get_field('large_image_value') != NULL) {echo get_field('large_image_value');} else if (get_field('fullsize_value') != NULL) {echo get_field('fullsize_value');} else {echo get_field('accordion_image_value');} ?>&h=340&w=960&zc=1" alt="<?php the_title(); ?>" /></a>
<!-- end slider posts display -->
<?php endwhile; $wp_query = null; $wp_query = $temp; ?>
<!-- SLIDER POSTS END -->
</div>
<div class="sliderbar"></div>
</div><!-- end div.feature_entry -->
</div><!-- end div.feature -->