我们都知道wordpress文章发布后都是按照发布时间进行排序,最新发布的在最前面。但是有的人需要按评论时间的要求来进行排序。
实现原理
给每篇文章添加一个自定义字段_commentTime(这个字段的值为最新一条评论的时间)然后使用query_posts函数实现所有文章按照自定义字段_commentTime的值进行排序。
实现方法
一、给所有文章添加自定义字段_commentTime,如果博客文章比较少当然可以手动添加,但是有的博主文章成千上万。我想一篇一篇的添加也是不现实的。所以这里有两个批量添加方法。
1、使用函数将代码添加到主题 functions.php文件中,刷新页面就可以自动为所有文章添加自定义字段。center为自定义字段的名称,true为值,可根据情况修改。(注意:执行完代码后立刻删除,否则会一直执行)
add_action('init', 'update_all_templates_to_new');
function update_all_templates_to_new(){ $args = add_action('init', 'update_all_templates_to_new');
function update_all_templates_to_new(){ $args =
2、使用sql语句,将下列SQL语句添加到phpmyadmin面板中SQL输入框中并执行。
insert into wp_postmeta (post_id, meta_key, meta_value)select ID, 'center', 'true' from wp_posts where post_type = 'post';
二、在主题functions.php文件中添加相应action代码这一步添加的代码可以实现发布新文章(或新更改)、有新评论的时候,自动添加/更新自定义字段_commentTime的值,不需要手动添加更改。
function luze_comment_meta_add($post_ID) { // 发布新文章或修改文章,更新/添加_commentTime字段值 global $wpdb; if(!wp_is_post_revision($post_ID)) { update_post_meta($post_ID, '_commentTime', time()); }}function luze_comment_meta_update($comment_ID) { // 发布新评论更新_commentTime字段值 $comment = get_comment($comment_ID); $my_post_id = $comment->comment_post_ID; update_post_meta($my_post_id, '_commentTime', time());}function luze_comment_meta_delete($post_ID) { // 删除文章同时删除_commentTime字段 global $wpdb; if(!wp_is_post_revision($post_ID)) { delete_post_meta($post_ID, '_commentTime'); }}add_action('save_post', 'luze_comment_meta_add');add_action('delete_post', 'luze_comment_meta_delete');add_action('comment_post', 'luze_comment_meta_update');
三、使用函数query_posts更改文章排序在index.php中查找代码 if (have_posts()) 或 while (have_posts()),在上一行添加query_posts函数即可:
if(!$wp_query) global $wp_query;$args = array( 'meta_key' => '_commentTime', 'orderby' => 'meta_value_num', // WordPress 2.8以上版本 'order' => DESC);$args = array_merge( $args, $wp_query->query );query_posts($args);
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505