免插件调用最新文章 是我们在进行wordpress改造开发时常常面对的功能,搜集了网上几种常用的方法,当一个页面既有最新文章又有置顶文章时,我们要考虑在最新文章列表里排除掉置顶文章。
一、最简单的方法wp_get_archvies
wordpress最新文章的调用可以使用一行很简单的模板标签wp_get_archvies来实现
PHP get_archives(‘postbypost’,10); ?> (显示10篇最新更新文章)
或者
PHP wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>
type=postbypost:按最新文章排列
format=custom:用来自定义这份文章列表的显示样式(fromat=custom也可以不要,默认以UL列表显示文章标题。)
二、query_posts()函数
通过WP的query_posts()函数也能调用最新文章列表, 虽然代码会比较多一点,但可以更好的控制Loop的显示,比如你可以设置是否显示摘要。具体的使用方法也可以查看官方的说明。
文章
PHP query_posts('showposts=6&cat=-111'); ?>
三、推荐WP_Query函数
- PHP the_permalink(); ?>”>PHP the_title(); ?>
PHP endwhile;?>
PHP $post_query = new WP_Query(‘showposts=10’);
while ($post_query->have_posts()) : $post_query->the_post();
$do_not_duplicate = $post->ID; ?>
四、推荐get_results()函数
- PHP echo get_permalink($postid); ?>” title=”PHP echo $title ?>”>PHP echo $title ?>
PHP } ?>
PHP $result = $wpdb->get_results(“SELECT ID,post_title FROM $wpdb->posts where post_status=’publish’ and post_type=’post’ ORDER BY ID DESC LIMIT 0,10″);
foreach ($result as $post) {
setup_postdata($post);
$postid = $post->ID;
$title = $post->post_title;
?>
五、最新文章中排除置顶文章
文章
- PHP the_permalink() ?>" rel="bookmark" class="title"> echo get_the_title(); ?>PHP the_time('m/d'); ?>
$recentPosts = new WP_Query(array('post__not_in' => get_option('sticky_posts')));
?>
PHP while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
PHP endwhile; wp_reset_query();?>
六、小结
1、使用get_results()函数最快