Advertisement
BakerMan

Reorder Event Posts (Publication Order) TEC/ECP 2.0.10

Dec 3rd, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. /**
  2.  * Reorder the list of events in the admin environment so that they show most
  3.  * recently created first.
  4.  */
  5. add_filter('posts_orderby',  function($sql) {
  6.     if (!is_admin() or get_query_var('post_type') !== TribeEvents::POSTTYPE) return $sql;
  7.     $table = $GLOBALS['wpdb']->posts;
  8.     return " $table.post_date DESC ";
  9. }, 20);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement