使用 WordPress 来调用当前最新文章内容是制作 wordrpess 主题时最常见的问题,一般都有在首页或者内页调用最新或是随机文章的嗜好,如果这些文章是同一个开源g q , 2 = V ~ = T程序的,那比调用就相对容易一些。那以下给大家推荐了三种常用的 wordpress 文章调用方法,仅供大家参考。
WordPress 调用最新五篇文章
- <( W J E * ~ e;?php query_posts('showposts=5'); ?>
- <ul>
- <?php while (have_posts()) : the_post(&N ) T#41;; ?>
- <li><a href="<?php the_permalink(h B A V R1; ?>"><?php the_title()\ o `; ?><^ H n/a></li>
- <?php endwhile;?>
- </ul>
其中的 showposts=5 为最新文章数量,可自定义数值。
WordPre# @ t l ` 2 M ~ss 调用分类 ID 为 1 的分类下的五篇最新文章
- <?php $rand_posta o 9 h x : \s = get_posts('numberposts=5&category=1&orderby=date');foreach($rand_posts as $post4 i h 9 \ ^ z P ^) : ?>
- <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li&gF S f n x { ht;
- <?php endforeach;?>
numberposts=5 五为文章数值的限定
category=1 1 为分类4 ] U ID 的限定
WordPress 调用最新文章
- <?php $rand_posts = get_posts('numberposts=10&orderby=date');foreach($rand_posts as $post) : ?>
- <li><a href="<?php the_permalink(); ?&g{ x B Y F 2 1 ~t;"> <?p0 w ~hp echo mb_strimwid? Z c 8 J & 0th(get_the_titlez n f G : ! ) J u0;), 0, 32, ''); ?>7 \ i R;</a></li>
- <?php endforeach;?>
numberposts=10 最新 10 篇文章、orderby=date 按日期调用
以上三种方式分别通过最新的文章数| h ?量,最新的特定分类下的文章数量,最新的某时间内的文章数量来帮助大家更好的使用和了解 wordpress。S F \ ; O 3 0