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-scenic-touring.php
<!-- article Scenic Touring --> <?php if (in_category('scenic-touring')) { ?> <p><a href="<?php bloginfo('wpurl'); ?>/category/summer/scenic-touring/">Back to Scenic Touring index</a> </p> <h1><?php the_title(); ?> </h1> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="feature-wrapper"> <?php the_content(); // Dynamic Content ?> </div> </article> <?php } //end if in Scenic Touring ?> <!-- Copyright --> <section id="copyright" class="wrapper"> <p class="copyright"> <?php _e( 'Feature by ', 'html5blank' ); the_author(); ?>, © <?php echo date("Y") ?> </p> </section> --> <!-- ends copyright --> <!--Practical info sections--> <section id="practical-information" class="wrapper"> <h2 class="xl-hdr_bordertopw">Practical Information</h2> <!-- Origins of the route begins --> <div class="content-container"> <?php if( get_field('routehistory')): ?> <div class="inprofile2col"> <h2>Origins of the Route</h2> <span class="content"> <?php echo get_post_meta( $post->ID, 'routehistory', true ); ?></span> </div> <?php endif; ?><!-- Ends Origins of the route--> <!-- Starts Useful addresses --> <?php if( get_field('usefuladdresses') ): ?> <div class="inprofile2col"> <h2>Useful Addresses</h2> <span class="content"> <?php echo get_post_meta( $post->ID, 'usefuladdresses', true ) ; ?></span> </div> <?php endif; ?> <!-- ends Useful addresses --> </div> </section>
Save
Cancel