최근 글 가져오기

최근 글을 가져오는 위젯 방식이 있긴 하지만 스킨을 직접 제작할 경우 php 로 최신글을 가져와야 하는 경우 아래처럼 사용한다.

<section class="recent">
           <h3>recent</h3>
           <ul>
                 <?php
​
                 $result = wp_get_recent_posts(array(
                 'numberposts' => 6,
                 'post_status' => 'publish',
                 ));
                 
                 foreach( $result as $p ){
                 ?>
                       <li><a href="<?php echo get_permalink($p['ID']) ?>"><?php echo $p['post_title'] ?></a></li>
                 <?php
                 }
                 ?>
           </ul>
     </section>​

이렇게 하면 li 안에 링크와 제목이 노출되어 리스트가 만들어진다.

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP