显示特定类别的最新帖子标题

时间:2013-05-13 11:39:50

标签: php wordpress

我正在使用以下代码在网站首页上显示一个包含最近帖子的框:

<?php
    $recent = get_posts( 'posts_per_page=3' );
    if( $recent ) foreach( $recent as $post ) {
        setup_postdata( $post ); ?>

    <span class="recent-date"><?php the_time('d.m.Y'); ?><br /></span>
    <span class="recent-title"><?php $limit = 5; $text = get_the_title();

    if (str_word_count($text, 0) > $limit) {
        $words = str_word_count($text, 2);
        $pos = array_keys($words);
        $text = substr($text, 0, $pos[$limit]) . '...';
    }
    echo $text; 
?>

我想做同样的事情,但只展示特定类别的帖子,我该怎么做?

1 个答案:

答案 0 :(得分:0)

只需调整get_posts参数,例如:

$recent = get_posts( 'posts_per_page=3&category=5' );