close

 

 

WordPress Codex官方程式庫

https://codex.wordpress.org/Function_Reference/query_posts

 

使用範例:

<?php
query_posts('showposts=4&category_name=最新消息'); //顯示4則&分類名稱為最新消息
while (have_posts()) : the_post(); //讀取文章的迴圈
?>
<!--最新消息LIST-->
<h4>
<small><?php the_time('Y / m / d') ?></small>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</h4>
<?php endwhile; ?>
view raw gistfile1.php hosted with ❤ by GitHub
arrow
arrow
    創作者介紹
    創作者 蘇姵欣 PeiSu 的頭像
    蘇姵欣 PeiSu

    蘇姵欣 Pei Su

    蘇姵欣 PeiSu 發表在 痞客邦 留言(1) 人氣()