상세 컨텐츠

본문 제목

wordpress theme (index.php)

쿠쿠 작업장(web CMS)/wordpress

by eunclove 2014. 10. 30. 14:15

본문

728x90
반응형

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>

728x90

관련글 더보기

댓글 영역