WordPress 最新文章调用方法
在自己做网站时,网站首页需要调用网站中最新发布的文章,如何让网站自动的调用出网站后台的文章呢,就需要添加wor…
在自己做网站时,网站首页需要调用网站中最新发布的文章,如何让网站自动的调用出网站后台的文章呢,就需要添加wordpress最新文章。
wordpress调用最新文章的代码有三种,通过以下三种代码都可以调用出网站中的最新文章。学做网站的学员们可以根据自己的需要在自己的网站上添加任一代码。
第一种调用wordpress最新文章代码
<?php wp_get_archives(‘type=postbypost&limit=10’); ?>
第二种调用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最新文章代码
<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按日期调用
相关教程:wordpress如何调用某一个分类下的热门文章
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!