如果你是一个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 the_permalink(); ?>">PHP the_title(); ?>
PHP endforeach; ?>
$new_posts = get_posts(‘numberposts=10&order=ASC&orderby=title’);
foreach( $new_posts as $post ) :
?>
三、query_posts()函数
文章
PHP query_posts('showposts=6&cat=-111'); ?>