本文采用了WordPress函数functionQuery_post()的一种高级用法,就是获取本周、本月或最近30天评论数最高的某个总次数的日志,一定要让盆友参考。
WordPress函数Query_post()的一个高级用法是获取本周或本月或最近30天内评论最多的日志的某个总数。
方法是将下面的每个代码放在主题模板文档中必须显示最热门信息日志的适当部分,比如侧边栏(sidebar.php)。
有史以来评论最多日志
复制代码如下:
- <;李><ahref="<?PHPthe_permalink();?>title="<?PHPprintf(ESC_attr('Permalinkto%s'),the_title_attribute('echo=0');?>rel="bookmark"><?PHPthe_title();?></a>;</李>
<;?phpendwhileWP_reset_query();?>
<;/ul>;
这一段代码的默认设置显示评论数最多的前10个日志,总数10可以改为其他标准值。
本周评论最多的日志
要显示本周评论最多的日志的信息,可以应用以下编码,也就是基本上在前面的编码上增加一些额外的主要参数:
复制代码如下:
- <;李><ahref="<?PHPthe_permalink();?>title="<?PHPprintf(ESC_attr('Permalinkto%s'),the_title_attribute('echo=0');?>rel="bookmark"><?PHPthe_title();?></a>;</李>
<;?phpendwhileWP_reset_query();?>
<;/ul>;
过去30天内评论最多的日志
复制代码如下:
- <;李><ahref="<?PHPthe_permalink();?>"title="<?PHPprintf(ESC_attr('Permalinkto%s'),the_title_attribute('echo=0');?>"rel="bookmark"><?PHPthe_title();?></a>;</李>
<;?phpendwhileWP_reset_query();?>
<;/ul>;
“30天”可以更改为其他值(如“1年”、“7天”等。).
本月评论最多的日志
同样,显示信息的本月评论最多的日志可以编码如下:
复制代码如下:
- <;李><ahref="<?PHPthe_permalink();?>title="<?PHPprintf(ESC_attr('Permalinkto%s'),the_title_attribute('echo=0');?>rel="bookmark"><?PHPthe_title();?></a>;</李>
<;?phpendwhileWP_reset_query();?>
<;/ul>;
热烈欢迎补充说明~
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)