<?php
if ( $this ->theme->display ( 'featuredposts_label' ) ) { ?>
<h2 class = "fp-label" ><?php $this ->theme->option ( 'featuredposts_label' ) ; ?></h2>
<?php } ?>
<div class = "featuredposts clearfix" >
<div class = "fp-slides" >
<?php
$featuredposts_source = $this ->theme->get_option ( 'featuredposts_source' ) ;
$featuredposts_moreoptions = $this ->theme->get_option ( 'featuredposts_moreoptions' ) ;
$featuredposts_query = false ;
if ( $featuredposts_source == 'category' ) {
if ( $this ->theme->display ( 'featuredposts_source_category' ) ) {
}
} elseif ( $featuredposts_source == 'posts' ) {
if ( $this ->theme->display ( 'featuredposts_source_posts' ) ) {
}
} elseif ( $featuredposts_source == 'pages' ) {
if ( $this ->theme->display ( 'featuredposts_source_pages' ) ) {
}
}
if ( $featuredposts_query ) {
$featuredposts_excerpt_length = $this ->theme->get_option ( 'featuredposts_excerpt_length' ) ;
query_posts ( $featuredposts_query ) ;
if ( have_posts ( ) ) : while ( have_posts ( ) ) : the_post ( ) ;
?>
<div class = "fp-post clearfix" >
<?php
if ( $this ->theme->display ( 'thumbnail' , $featuredposts_moreoptions ) && has_post_thumbnail ( ) ) {
?><div class = "fp-thumbnail" ><a href= "<?php the_permalink(); ?>" ><?php the_post_thumbnail ( 'large' ) ; ?></a></div>
<?php
}
?>
</div>
<?php
endwhile ;
else :
$featuredposts_query = false ;
endif ;
wp_reset_query ( ) ;
}
if ( ! $featuredposts_query ) {
for ( $i = 1 ; $i <= 5 ; $i ++ ) { ?>
<div class = "fp-post" >
<div class = "fp-thumbnail" ><a href= "#" ><img src= "<?php echo $this->url; ?>/default-slides/<?php echo $i; ?>.jpg" alt= "This is default featured post <?php echo $i; ?> title" title= "This is default featured post <?php echo $i; ?> title" /></a></div>
</div>
<?php }
}
?>
</div>
<?php
<div class = "fp-nav clearfix" >
<?php if ( $this ->theme->display ( 'next_prev' , $featuredposts_moreoptions ) ) { ?>
<a href= "#fp-next" class = "fp-next" ></a>
<a href= "#fp-prev" class = "fp-prev" ></a>
<?php } ?>
</div>
<?php }
?>
</div>