Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
mountainpassions
/
winter
/
wp-content
/
themes
/
peakie-2015
📤 Upload
📝 New File
📁 New Folder
Close
Editing: single.php
<?php get_header(); ?> <main id="main-content"> <!-- function to run before the content --> <?php if (have_posts()): while (have_posts()) : the_post(); ?> <?php if (in_category('ski-resort-reviews')) : include_once('single-ski-resort-reviews.php'); elseif (in_category('resort-insight')) : include_once('single-resort-insight.php'); elseif (in_category('ski-features') && !in_category('travel')) : include_once('single-ski-features.php'); elseif (in_category('winter-activities')) : include_once('single-winter-activities.php'); elseif (in_category('mountain-living')) : include_once('single-mountain-living.php'); elseif (in_category('property-news')) : include_once('single-property-news.php'); elseif (in_category('ski-news')) : include_once('single-ski-news.php'); elseif (in_category('ski-deals')) : include_once('single-ski-deals.php'); elseif (in_category('summer-activities')) : include_once('single-summer-activities.php'); elseif (in_category('summer-resorts')) : include_once('single-summer-resorts.php'); elseif (in_category('scenic-touring')) : include_once('single-scenic-touring.php'); elseif (in_category('travel')) : include_once('single-travel.php'); else : /* default */ include_once('single-backup.php'); endif; ?> <!-- Contextual Related Posts --> <?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?> <!-- Contextual Related Posts end--> <?php endwhile; ?> <?php else: ?> <!-- article --> <article> <h1><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h1> </article> <!-- /article --> <?php endif; ?> <!-- ends page content--> </main><!-- ends main content --> <!--<script src="https://www.dwin2.com/pub.160812.min.js"></script> <!-- script to render real url on ads --> <?php get_footer(); ?>
Save
Cancel