/
home
/
rekodeb
/
osteo
/
wp-content
/
themes
/
zuperla
/
Upload File
HOME
<?php get_header(); ?> <?php the_post(); ?> <?php zuperla_eutf_print_header_title( 'post' ); ?> <?php zuperla_eutf_print_header_breadcrumbs( 'post' ); ?> <?php zuperla_eutf_print_anchor_menu( 'post' ); ?> <div class="eut-single-wrapper"> <!-- CONTENT --> <div id="eut-content" class="clearfix <?php echo zuperla_eutf_sidebar_class(); ?>"> <div class="eut-content-wrapper"> <!-- MAIN CONTENT --> <div id="eut-main-content"> <div class="eut-main-content-wrapper clearfix"> <?php get_template_part( 'content', get_post_format() ); //Post Pagination wp_link_pages(); ?> </div> <div class="eut-single-section"> <div class="eut-container"> <?php if ( zuperla_eutf_visibility( 'post_tag_visibility', '1' ) ) { // Print Tags & Categories zuperla_eutf_print_post_tags(); } ?> <?php if ( zuperla_eutf_social_bar ( 'post', 'check' ) ) { // Print Socials zuperla_eutf_social_bar ( 'post' ); } ?> <?php // Print About Author section zuperla_eutf_print_post_about_author(); ?> <?php if ( zuperla_eutf_visibility( 'post_comments_visibility' ) ) { ?> <div id="eut-comments-section"> <?php comments_template(); ?> </div> <?php } ?> </div> </div> </div> <!-- END MAIN CONTENT --> <?php zuperla_eutf_set_current_view( 'post' ); ?> <?php get_sidebar(); ?> </div> </div> <!-- END CONTENT --> <?php //Print Related Posts if ( zuperla_eutf_visibility( 'post_related_visibility' ) ) { $related_query = zuperla_eutf_get_related_posts(); if ( !empty( $related_query ) ) { ?> <div id="eut-related-section"> <div class="eut-container"> <?php zuperla_eutf_print_related_posts( $related_query ); ?> </div> </div> <?php } } ?> <?php //Posts Bar zuperla_eutf_nav_bar( 'post' ); ?> </div> <?php get_footer(); //Omit closing PHP tag to avoid accidental whitespace output errors.