方法一、query_posts()函数
<?
query_posts('showposts=6&cat=10');
while (have_posts()) : the_post();
the_permalink();
the_title();
endwhile;
?>
上面代码的意思是 读取6篇文章,排除分类ID为10里面的文章
方法二、wp_get_archvies函数
语法结构:
<? wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>
type=postbypost:按最新文章排列
limit:限制文章数量最新20篇
format=custom:用来自定义这份文章列表的显示样式(fromat=custom也可以不要,默认以UL列表显示文章标题。)
三、使用WP_Query函数
<?$post_query = new WP_Query('showposts=10');
while ($post_query->have_posts()) : $post_query->the_post();
$do_not_duplicate = $post->ID;
the_permalink(); the_title();
endwhile; ?>
注:在用WORDPRESS建站时最常用的是使用是第1种,便于美化网页
未经允许不得转载:445IT之家 » wordpress建站:调用最新文章方法总结