wordpress get_posts函数的使用方法 禁止输出指定类别的文章

使用wordpress禁止输出指定类别的文章可以给get_posts()函数传个数组参数,如下:

复制代码代码如下:
<div class=”widget” id=”diary1″>
<h3>随机呈现</h3>
<ul>
<?php
$args=array(
‘numberposts’=>16,
‘category’=>’-9,-12′,
‘orderby’=>’rand’
);
$rand_posts = get_posts($args);
foreach( $rand_posts as $post ) :
?>
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>

其中:

复制代码代码如下:
$args=array(
‘numberposts’=>16,
‘category’=>’-9,-12′,
‘orderby’=>’rand’
);

键名numberposts表示取出的文章数,category表示要显示的文章的类别ID,负数代表不显示,以字符串的形式用逗号隔开,orderby这里表示随机取出文章。
效果如小谈博客首页右侧“随机呈现”效果,去掉了php类别的文章显示,因为下面有了一个“php专栏”,避免重复。
get_posts()函数完整的参数列表:

复制代码代码如下:
<?php $args = array(
‘posts_per_page’ => 5,
‘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’,
‘suppress_filters’ => true );
?>

原创文章,作者:GWCFU,如若转载,请注明出处:http://www.wangzhanshi.com/n/127.html

(0)
GWCFU的头像GWCFU
上一篇 2024年12月17日 17:44:23
下一篇 2024年12月17日 17:46:08

相关推荐

发表回复

登录后才能评论