发布网友 发布时间:2022-04-21 05:58
共1个回答
热心网友 时间:2022-06-18 08:57
正好我也要用到这个功能,把下面代码插入到function.php中
//修改默认的WordPress query函数
function wp37_com_custom_query( $query ) {
// 确保只修改主查询
if( $query->is_main_query() && ! is_admin() ) {
// 在首页和分类页面进行,
if($query->is_home() || $query->is_category() ){
$query->set( 'orderby', 'modified' );
$query->set( 'order', 'DESC' );
// 由于某些插件或主题已修改默认查询,此代码有时可能无法按预期工作。使用supress_filters参数解决这个问题
$query->set( 'suppress_filters', 'true' );
}
}
}
add_action( 'pre_get_posts', 'wp37_com_custom_query' );
详情查看
追答报什么错误?