index.php 파일은 자신이 만들고 싶은 방식대로 하면되다. 아래 예는 기본적으로 포스트 리스트를 불러오는 방식이다.
보다 많은 함수를 알고자 한다면 아래의 사이트를 방문해 보시면 좀더 많은 함수 들이 많이 나와있다.
https://codex.wordpress.org/Main_Page
<div id="main">
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="class-name">
<h2>
<a href="<?php the_permalink(); ?>"><?php the_title(); //포스트 제목 ?></a>
</h2>
<p><!-- 포스트 날자 및 시간 카테고리 -->
<?php echo get_the_date(); ?> <?php echo get_the_time(); ?>
| Category : <?php the_category(', '); ?>
</p>
<?php // 포스트 썸네일 가져오는 부분
if ( has_post_thumbnail() ) {
the_post_thumbnail( array(100,100), array(
'class' => 'class-name',
) );
}
?>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
</div>
wordpress theme (content.php) (0) | 2014.11.11 |
---|---|
wordpress theme (single.php) (0) | 2014.11.10 |
wordpress 테마만들기(style.css) (0) | 2014.10.28 |
wordpress thumb(워드프레스 썸네일 설정하기) (0) | 2014.10.20 |
wordpress 테마만들기(header.php)-3 메뉴바 만들기 (2) | 2014.10.17 |
댓글 영역