관리-도구
편집 파일: single.php
<?php get_header(); ?> <div class="innerPagesWrapper"> <div class="pageTitleWrapper"> <h2>Recent Posts</h2> <div class="backToHomePage"> <div class="gradient"></div> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="notMobile backToHome"> <i class="fa fa-times"></i> <span> Back To Homepage </span> </a> </div> </div> <hr/> <div class="contentWrapper "> <div class="articleDetails"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'single' ); ?> <?php endwhile; // end of the loop. ?> <div class="pageNavAndComments"> <?php we_repair_it_post_nav(); ?> <?php // If comments are open or we have at least one comment, load up the comment template if ( comments_open() || '0' != get_comments_number() ) : comments_template(); endif; ?> </div> </div> </div> </div> <?php //get_sidebar(); ?> <?php get_footer(); ?>