close
WordPress Codex官方程式庫
https://codex.wordpress.org/Function_Reference/query_posts
使用範例:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; ?> |
文章標籤
全站熱搜