在构建网站的过程中,如果要对网站上的文章进行排序,则可以使用热门文章代码自动对其进行调用。 热门文章可以分为两种方法:根据文章的浏览次数和评论数。
WordPress如何调用特定分类下的热门文章
下面是二种方式来调用某一个分类下热门文章的代码。
wordpress程序调用按照浏览量来调用某一个分类下的热门文章代码:(注意使用这种方式调用热门文章,网站必须安装wordpress浏览量插件)
1 2 3 4 5 6 |
<?php if (have_posts()) : ?> <?php query_posts(‘cat=5’ . $mcatID. ‘&caller_get_posts=1&showposts=16&v_sortby=views’); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></li> <?php endwhile;?> <?php endif; wp_reset_query(); ?> |
wordpress程序调用按照评论量来调用某一个分类下的热门文章(热评文章)代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php $post_num = 10; // 设置调用条数 $args = array( ‘post_password’ => ”, ‘post_status’ => ‘publish’, // 只选公开的文章. ‘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(); ?> <li><?php comments_number(‘0’, ‘1’, ‘%’ );?> 次评论: <br><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></li> <?php } wp_reset_query();?> |
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:115904045@qq.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。