php 按标题,ASC排序自定义帖子类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 按标题,ASC排序自定义帖子类型相关的知识,希望对你有一定的参考价值。

<?php

// Sort a CPT by Title – just change the CPT slug at is_post_type_archive
add_filter( 'parse_query', 'sorting_archives' );
function sorting_archives( $wp_query ) {
  if (is_post_type_archive( 'gg_engagement' ) || is_tax()) {
    $wp_query->set( 'orderby', 'title' );
    $wp_query->set( 'order', 'ASC' );
  }
  return $wp_query;
}

?>

以上是关于php 按标题,ASC排序自定义帖子类型的主要内容,如果未能解决你的问题,请参考以下文章