我尝试了很多东西,但不可能让它发挥作用。
我终于删除了我的尝试
有插件代替吗?
解决方案:
在你的 function.php 中:
/**
* Comment_pre_save filter updates post_modified date
* to coincide with new comments. Since posts are ordered by
* post_modified, this will 'bubble' up more active posts to the top
*/
add_filter('preprocess_comment', 'update_post_modified');
function update_post_modified($comment_data){
global $wpdb;
$wpdb->update(
$wpdb->posts,
array(
'post_modified' => current_time('mysql'), // string
),
array( 'ID' => $comment_data['comment_post_ID'] ),
array(
'%s'
),
array( '%d' )
);
return $comment_data;
}
在你的index.php中:
<?php $posts=query_posts($query_string . '&orderby=modified'); ?>
这有点像黑客,但我必须为我的一个项目做同样的事情。每次使用
preprocess_comment
过滤器对帖子发表新评论时,我最终都会更新帖子的“post_modified”字段:
/**
* Comment_pre_save filter updates post_modified date
* to coincide with new comments. Since posts are ordered by
* post_modified, this will 'bubble' up more active posts to the top
*/
add_filter('preprocess_comment', 'update_post_modified');
function update_post_modified($comment_data){
global $wpdb;
$wpdb->update(
$wpdb->posts,
array(
'post_modified' => current_time('mysql'), // string
),
array( 'ID' => $comment_data['comment_post_ID'] ),
array(
'%s'
),
array( '%d' )
);
return $comment_data;
}
编辑:
忘记添加一位,无论你在哪里有你的帖子循环,请确保你在修改日期之前订购它,否则这个黑客将不起作用。例如:
global $wp_query;
$args = array_merge( $wp_query->query, array( 'orderby' => 'modified' ) );
query_posts($args);
有一个插件,但已经两年多没有更新了。它可能不再得到维护或支持,并且在与更新版本的 WordPress 一起使用时可能会出现兼容性问题。