최근 글을 가져오는 위젯 방식이 있긴 하지만 스킨을 직접 제작할 경우 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 안에 링크와 제목이 노출되어 리스트가 만들어진다.