Wordpress 设置后台自定义post 排序

Posted ryanzheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress 设置后台自定义post 排序相关的知识,希望对你有一定的参考价值。

创建新的 Post type时,文章在后台默认使用 Titile 列进行升序排序,但是通常情况下我们需要按日期 Date 进行降序排序,

技术图片

 

function wpse_81939_post_types_admin_order( $wp_query ) {
  if (is_admin()) {

    // Get the post type from the query
    $post_type = $wp_query->query[post_type];

    if ( $post_type == Videos) {    // Videos 可以替换为你的 custom post type

      $wp_query->set(orderby, date);

      $wp_query->set(order, DESC);
    }
  }
}
add_filter(pre_get_posts, wpse_81939_post_types_admin_order);

 

参考链接:

https://wordpress.stackexchange.com/questions/81939/how-to-order-posts-of-a-custom-post-type-by-date-desc-in-dashboard-admin

以上是关于Wordpress 设置后台自定义post 排序的主要内容,如果未能解决你的问题,请参考以下文章

排序和显示自定义帖子类型 Wordpress

在 Wordpress 中,如何将自定义帖子类型的默认管理员排序顺序设置为自定义列?

给wordpress后台侧栏菜单添加自定义字段的方法

WordPress固定链接设置的几种方法

显示具有自定义日期元值的wordpress文章,按此日期排序,并具有定义的分类法

添加自定义Wordpress设置