1. 程式人生 > >wordpress呼叫指定分類文章

wordpress呼叫指定分類文章

<ul>
<?php
    $args=array(
        'cat' => 1,   // 分類ID
        'posts_per_page' => 10, // 顯示篇數
    );
    query_posts($args);
    if(have_posts()) : while (have_posts()) : the_post();
?>
    <li>
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> //標題
        <span>
        <?php if (has_excerpt()) {
                echo $description = get_the_excerpt(); //文章編輯中的摘要
            }else {
                echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 170,"……"); //文章編輯中若無摘要,自定擷取文章內容字數做為摘要
            } ?>
        </span>
    </li>
<?php  endwhile; endif; wp_reset_query(); ?>
</ul>