默认情况下,帖子和页面排序在日期之后。如果要按“顺序”字段对页面进行排序(该字段在编辑页面上可见),则必须设置orderby
参数:
add_action(\'pre_get_posts\', \'change_order\');
function change_order($query) {
if ( is_front_page() || is_home() ) {
$query->set( \'orderby\', \'menu_order\' );
$query->set( \'order\', \'ASC\' );
}
return $query;
}
输入代码
functions.php
文件更多关于
orderby 您将找到的参数
here.