在自己做网站时,网站首页需要调用网站中最新发布的文章,如何让网站自动的调用出网站后台的文章呢,就需要添加 WordPress 最新文章。 WordPress 调用最新文章的代码有三种,通过以下三种代码都可以调用出网站中的最新文章。学做网站的学员们可以根据自己的需要在自己的网站上添加任一代码。
第一种调用 WordPress 最新文章代码
<?php wp_get_archives('type=postbypost&limit=10'); ?>
第二种调用 WordPress 最新文章代码
<ul>
<?php
$cats = wp_get_post_categories($post->ID);
if ($cats) {
$args = array(
'category__in' => array( $cats[0] ),
'post__not_in' => array( $post->ID ),
'showposts' => 5,
'caller_get_posts' => 1
);
query_posts($args);
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<li><?php include( TEMPLATEPATH . '/thumbnail.php' ); ?><p><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"> <?php the_title() ?></a></p></li>
<?php endwhile; else : ?>
<?php endif; wp_reset_query(); } ?>
</ul>
第三种调用 WordPress 最新文章代码
<ul>
<?php $post_query = new WP_Query(『showposts=10′);
while ($post_query->have_posts()) : $post_query->the_post();
$do_not_duplicate = $post->ID; ?>
<li><a href=」<?php the_permalink(); ?>」><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
第四种调用 WordPress 最新文章代码
<?php $rand_posts = get_posts('numberposts=10&orderby=date');foreach($rand_posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"> <?php echo mb_strimwidth(get_the_title(), 0, 32, ''); ?>
</a></li>
<?php endforeach;?>
numberposts=10 最新 10篇文章
orderby=date 按日期调用