English name:Least commented posts plugins
作者(Author):小可 (xiaoke)
版本(Version):1.0.0.1
下载(down):http://wordpress.org/extend/plugins/least-commented-posts/
功能:Least commented posts plugins - 作者:小可。感谢老唐的帮助,没有他,这个插件不能面世。在侧边栏列出评论最少的文章,当然,你也可以修改成评论最多的文章,把ASC改成DESC就可以了,不过要到修改文件中去改,把其中$cold_post_order = ASC 的ASC修改成DESC就是热评文章了。
Function:Author: Xiao Ke. Thank help of Laotang, without him, this plug-in is not available. Comment least listed in the sidebar article, of course, you can also modify the Most articles changed to ASC DESC on it, however, to modify the file to change. which $ cold_post_order = ASC ASC modified DESC is Lively article.
Least commented posts plugins I refer to the following code development.
- <?php $pop = $wpdb->get_results("SELECT id, post_title, comment_count
- FROM {$wpdb->prefix}posts
- WHERE post_type='post' AND post_status='publish' AND post_password=''
- ORDER BY comment_count DESC LIMIT 10"); ?>
- <ul>
- <?php foreach($pop as $post) : ?>
- <li><a href="<?php echo get_permalink($post->id); ?>"><?php echo $post->post_title; ?></a></li>
- <?php endforeach; ?>
- </ul>
代码中的DESC表示降序,将其更改为升序ASC就可以了。更改后的代码如下。
DESC for descending code change ascending ASC can. Changed code is as follows。
- <?php $pop = $wpdb->get_results("SELECT id, post_title, comment_count
- FROM {$wpdb->prefix}posts
- WHERE post_type='post' AND post_status='publish' AND post_password=''
- ORDER BY comment_count ASC LIMIT 10"); ?>
- <ul>
- <?php foreach($pop as $post) : ?>
- <li><a href="<?php echo get_permalink($post->id); ?>"><?php echo $post->post_title; ?></a></li>
- <?php endforeach; ?>
- </ul>
本来我就是用这段代码的,后来发现在侧边栏移动不方面,所以才打算开发这样的插件。
本插件让你罗列出最少评论的文章,让一些被遗忘的优秀文章得以重见天日,欢迎大家的使用,也希望你们能够喜欢,谢谢。
Originally, I was using this code, the later movement is not found in the sidebar, so it intends to develop such a plug-in.
The plug-ins let you list at least reviewed papers, excellent article brought to light forgotten, welcome everyone to use, and also hope you will like it, thank you.
下载地址DOWN:本地下载 流量太耗,去官网下载吧。 官方下载
文章评论
小可又开始折腾
@sun 我写的插件那,你要用不?
那些文章我自己都不去看了
@Louis Han 有些是好文章,但是有时候文章发太多,别人没看到。
@小可 这个想得很周到,其实很多人有这样的烦恼的
我连文章代码高亮显示都没搞出来,就不瞎折腾了。
@一念花开 这个可是小可我写的呢
落梵过来支持一下!顺便下载一下
@落梵 你下载去用啊?
@小可 给你提高下再量、要用我也不用插件、直接扒代码
如果不要插件,用代码如何实现?
@豆腐鱼 本文章,第一段代码就是了。
好吧,不过计数插件就有这个功能啊
@鬼娃娃 你的计数有这玩意?好吧,我独立出来了。
支持一下,小可开始做插件了,厉害
小可开发插件了。支持
@罗迦费升格 很早前的插件了
换一个思路看 或许就美乐··一般都是贴热门的文章··
这个插件比较好用