关于wp文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版wordpress。
1调用最新文章
// 显示篇数和排除分类
3调用整站随机文章
5, 'orderby' => 'rand', 'post_status' => 'publish' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
4调用同分类随机文章
$category){
$catid = $category->term_id;}
$args = array('orderby' => 'rand','showposts' => 8,'cat' => $catid ); // 显示篇数
$query_posts = new wp_query();
$query_posts->query($args);
while ($query_posts->have_posts()) : $query_posts->the_post();?>
5调用整站热门文章(按评论数)
”,
‘post_status’ => ‘publish’, // 只选公开的文章.
‘post__not_in’ => array($post->id),//排除当前文章
‘caller_get_posts’ => 1, // 排除置顶文章.
‘orderby’ => ‘comment_count’, // 依评论数排序.
‘posts_per_page’ => $post_num
);
$query_posts = new wp_query();
$query_posts->query($args);
while( $query_posts->have_posts() ) { $query_posts->the_post(); ?>
– end –
尊龙凯时官方网站的版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,请发送邮件至[email protected]举报,一经查实,本站将立刻删除。