我嘗試了很多東西,但不可能得到它的作品。訂購WordPress的帖子最新評論
我終於刪除了我的嘗試
有一個插件呢?
SOLUTION:
在你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'); ?>
似乎是一個不錯的主意,但它不工作...我說這function.php – user1708580
它的工作(見文章編輯) – user1708580
這是偉大的,如果你看評論的帖子的一部分。感謝和+1 – henrywright