관리-도구
편집 파일: page.php
<?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages and that * other 'pages' on your WordPress site will use a different template. */ get_header(); ?> <div class="innerPagesWrapper"> <?php while ( have_posts() ) : the_post(); ?> <div class="pageTitleWrapper"> <?php the_title('<h2>', '</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="pageDefault"> <?php the_content(); ?> </div> </div> <?php endwhile; ?> </div> <?php get_footer(); ?>