File: D:/HostingSpaces/budilia/budilia.nl/wwwroot/wp-content/themes/zeeStylePro/template-slider.php
<?php
/*
Template Name: Page with Slider
*/
?>
<?php get_header(); ?>
<div id="content">
<?php
$options = get_option('themezee_options');
if(isset($options['themeZee_show_slider']) and $options['themeZee_show_slider'] == 'true') {
locate_template('/slideshow.php', true);
}
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="page-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="page-title"><?php the_title(); ?></h2>
<?php edit_post_link(__( 'Edit', 'themezee_lang' )); ?>
<div class="entry">
<?php the_content(); ?>
<div class="clear"></div>
<?php wp_link_pages(); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>