관리-도구
편집 파일: page.php
<?php get_header(); ?> <div id="c_content"> <div id="post_entry"> <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <div class="post_meta" id="post-<?php the_ID(); ?>"> <div class="post_top"></div> <div class="post_index"> <div class="post_title"> <div class="calendar"> <p class="date"><?php the_time('j'); ?></p> <p class="month"><?php the_time('M'); ?></p> </div> <div class="post_info"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <span class="author">Posted by <?php the_author_posts_link(); ?> <?php edit_post_link(__(' Edit'), '|', ''); ?></span> </div> </div> <div class="post_content"> <?php the_content("<br />" . "continue reading " . """ . the_title('', '', false) . """); ?> </div> <?php if ( function_exists('the_tags') ) { the_tags( '<p>Tags: ', ', ', '</p>'); } ?> </div> <div class="post_bottom"></div> </div> <div class="clear_content"></div> <?php endwhile; ?> <?php else: ?> <h3>The Page Had Been Deleted...</h3> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>