如何更改位置排序? (Wordpress,三重主题)

问题描述 投票:0回答:1

This is the list of the booking locations,我需要将它们的排序更改为按块排序,也许有人知道如何更改它。 提前谢谢你

我尝试在主题编辑器和插件编辑器中搜索并找到确切的文件。插件是:ba 预订一切

javascript php wordpress wordpress-theming custom-wordpress-pages
1个回答
0
投票

将此代码添加到functions.php。根据预订地点的帖子类型进行调整并设置 ASC 或 DESC。

function trojanist_order_booking_locations_by_slug( $query ){
  if( $query->get('post_type') == 'booking_location_post_type_slug' ){
    $query->set('orderby', 'name');
    $query->set('order', 'ASC');
  }
}
add_action( 'pre_get_posts', 'trojanist_order_booking_locations_by_slug');
© www.soinside.com 2019 - 2024. All rights reserved.