D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
danluatbos
/
domains
/
danluatbook.com
/
public_html
/
wp-content
/
themes
/
megastore
/
Filename :
single.php
back
Copy
<?php /** * The template for displaying all single posts. * * @package 7up-framework */ ?> <?php get_header();?> <div id="main-content" class="main-wrapper sv-single-post"> <div class="container"> <div class="row"> <?php sv_output_sidebar('left')?> <div class="<?php echo esc_attr(sv_get_main_class()); ?>"> <div class="main-page"> <?php while ( have_posts() ) : the_post(); /* * Include the post format-specific template for the content. If you want to * use this in a child theme, then include a file called called content-___.php * (where ___ is the post format) and that will be used instead. */ get_template_part( 'sv_templates/single-content/content',get_post_format() ); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'megastore' ), 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', ) ); if ( comments_open() || get_comments_number() ) { comments_template(); } endwhile; ?> </div> </div> <?php sv_output_sidebar('right')?> </div> </div> </div> <?php get_footer();?>