实际上这类效果,我们一般会放在首页展示、侧边栏或者文章底部去增添文章的相关性和及时性,在网上搜一下会有很多结果,但大多数对于初学者来说理解起来有点问题,下面就讲一下这里面的一个核心函数,有兴趣的朋友可以学习一下wordpress codex。
get_posts 函数详解
该函数属于 WordPress 的内置函数,用于在 WordPress 中提取多篇指定或随机文章。
越是描述简单的函数,使用起来就越是复杂,后面的需要仔细看咯!
使用方法:
$args是该函数必要的变量
get_posts( $args )将返回数组型的变量。
<?php $args = array( 'numberposts' => 5, 'offset' => 0, 'category' => , 'orderby' => 'post_date', 'order' => 'DESC', 'include' => , 'exclude' => , 'meta_key' => , 'meta_value' => , 'post_type' => 'post', 'post_mime_type' => , 'post_parent' => , 'post_status' => 'publish' ); $posts_array = get_posts( $args ); ?>
下面介绍几种典型的应用:
1. 随机文章
<?php $posts_rand = get_posts('numberposts=3&orderby=rand'); //根据上面的数组变量,传递了两个参数 ?>
2. 指定分类下特定数量文章
<ul> <?php global $post; $args = array( 'numberposts' => 5, 'offset'=> 1, 'category' => 1 ); //数量为5,从第1篇开始一般有0,分类ID $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>
3. 某分类下随机文章
<?php query_posts('showposts=5&cat=1&orderby=rand');while(have_posts()) : the_post();?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <?php endwhile; wp_reset_query(); ?>
4. 最新文章
<ul> <?php $posts = get_posts('numberposts=4&orderby=post_date'); foreach($posts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></li> <?php endforeach; $post = $posts[0]; ?> </ul>