wordpress最新文章实现的三种方法

前端之家收集整理的这篇文章主要介绍了wordpress最新文章实现的三种方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果你是一个wordpress主题开发者,或者wordpress谜,那么自己动手实现纯代码的wp最新文章,小编下面的文章对你有所帮助。

一、get_archives()函数

PHP get_archives("postbypost",10); ?> //显示10篇最新更新文章

或者

PHP wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>//显示20篇最新更新文章

后面这个代码显示博客中最新的20篇文章,其中format=custom这里主要用来自定义这份文章列表显示样式。(fromat=custom也可以不要,默认以UL列表显示文章标题。)

更多get_archives()函数用法, 请参考官网:http://codex.wordpress.org.cn/Function_Reference/wp_get_archives

二、遍历文章数据库

PHP

$new_posts = get_posts(‘numberposts=10&order=ASC&orderby=title’);

foreach( $new_posts as $post ) :

?>

PHP the_permalink(); ?>">PHP the_title(); ?>

PHP endforeach; ?>

三、query_posts()函数

文章

PHP query_posts('showposts=6&cat=-111'); ?>

PHP while (have_posts()) : the_post(); ?>

PHP the_permalink() ?>">PHP the_title(); ?>

PHP endwhile;?>

更多方法wordpress调用最新文章五种方法包括排除置顶文章

原文链接:https://www.f2er.com/wordpress/422851.html

猜你在找的wordpress相关文章