Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@IvoPereira
Created August 26, 2014 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IvoPereira/3f915e52f1d99c8c1d08 to your computer and use it in GitHub Desktop.
Save IvoPereira/3f915e52f1d99c8c1d08 to your computer and use it in GitHub Desktop.
Wordpress Custom Post Types Order in Admin
<?php
function set_custom_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 == 'POST_TYPE') {
// 'orderby' value can be any column name
$wp_query->set('orderby', 'title');
// 'order' value can be ASC or DESC
$wp_query->set('order', 'ASC');
}
}
}
add_filter('pre_get_posts', 'set_custom_post_types_admin_order');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment