📜  wp order archive page post by title - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:01.035000             🧑  作者: Mango

代码示例1
// Sort All Tours by Title
add_filter( 'parse_query', 'sorting_archives' );
function sorting_archives( $wp_query ) {
  if (is_post_type_archive( 'tour' ) || is_tax()) {
    $wp_query->set( 'orderby', 'title' );
    $wp_query->set( 'order', 'ASC' );
  }
  return $wp_query;
}