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-travel.php
<!-- Travel, Ski Features article --> <!-- Single post with sidebar --> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <section class="extended-wrapper"> <div class="feature-img"> <?php $image = get_field('banner_image'); if( !empty($image) ): ?> <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" /> <?php endif; ?> </div> </section> <div class="news-container"> <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb(' <p id="breadcrumbs">','</p> '); } ?> <div class="feature-title"> <h1><?php the_title(); ?></h1> <h2> <?php $value = get_field( "feature-sub-title" ); if( $value ) { echo $value; } else { echo ''; } ?></h2> </div> <?php the_content(); // Dynamic Content ?> </div> </article> <!-- /end ski feature --> <?php get_sidebar ('travel'); ?> <!-- Ends Travel, Ski Features -->
Save
Cancel