포스팅은 블로그 활동을 하기 위한 글들을 쓴다면,
페이지는 정적이 글들을 올리기 위한 공간이다. 즉 노출을 원한다면 포스팅을 아니면 페이지를 ㅡㅡ;;
우선 page.php 를 하나 만들고 나서 아래의 코드를 입력 해 준다.
<?php get_header(); ?>
<div id="main">
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h2>
<?php the_content(); ?>
<?php endwhile; else: ?>
<h2>포스트가 없습니다.</h2>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
page.php 도 여러가지 템플릿을 만들수 있다.
예를 들어
page-test.php 라는 템플릿을 만들고
page-test.php 안에 아래의 주석 문을 추가해 주면되다.
<?php
/*
Template Name: test
*/
?>
<?php get_header(); ?>
<div id="main">
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h2>
<?php the_content(); ?>
<?php endwhile; else: ?>
<h2>포스트가 없습니다.</h2>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
그러면 페이지추가로 들어가게 되면 아래 그림과 같이 페이지 템플릿이 추가 된걸 볼 수 있다.
wordpress theme (category.php) (0) | 2015.05.25 |
---|---|
wordpress-do_shortcode 사용하기 (0) | 2015.05.21 |
wordpress theme (content.php) (0) | 2014.11.11 |
wordpress theme (single.php) (0) | 2014.11.10 |
wordpress theme (index.php) (0) | 2014.10.30 |
댓글 영역