我构建了一个插件pre_get_posts()
, 这是我最早修改过的帖子。
但我也想看看这篇帖子之后的最新修改。有人有主意吗?
这是我的代码:
function modified_one_desc( $query) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( \'posts_per_page\', 1 );
$query->set(\'category_name\',\'Blog\');
$query->set(\'orderby\',\'modified\');
$query->set(\'order\',\'DESC\');
}
}
add_action( \'pre_get_posts\', \'modified_one_desc\' );
function modified_one_asc( $query) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( \'posts_per_page\', 1 );
$query->set(\'category_name\',\'Blog\');
$query->set(\'orderby\',\'modified\');
$query->set(\'order\',\'ASC\');
}
}
add_action( \'pre_get_posts\', \'modified_one_asc\' );
只有一个有效。