Advertisement
ten80snowboarder

WordPress Custom Post "Order By" in Admin Panel

May 29th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. //  function and action to order classes alphabetically ===========================
  2. function set_custom_post_types_admin_order($wp_query) {
  3.     if( is_admin() ){
  4.     //  Get the post type from the query --------------------------------------
  5.         $post_type  = $wp_query->query['post_type'];
  6.         if ( $post_type == 'YOUR_POST_TYPE_HERE') {
  7.         //  'orderby' value can be any column name ------------------------
  8.             $wp_query->set( 'orderby', 'title' );
  9.         //  'order' value can be ASC or DESC ------------------------------
  10.             $wp_query->set( 'order', 'ASC' );
  11.         }
  12.     }
  13. }
  14. add_filter('pre_get_posts', 'set_custom_post_types_admin_order');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement