Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Last active February 12, 2016 12:19
Show Gist options
  • Save jo-snips/5636467 to your computer and use it in GitHub Desktop.
Save jo-snips/5636467 to your computer and use it in GitHub Desktop.
The Events Calendar - Add Published Date Column to Admin
/*-----------------------------------------------------------------------------------*/
/* Add Published Date Column to Tribe Events
/*-----------------------------------------------------------------------------------*/
add_filter( 'manage_edit-tribe_events_columns', 'my_edit_tribe_events' ) ;
function my_edit_tribe_events( $columns ) {
$columns['date'] = __('Date');
return $columns;
}
@mmobinvestor
Copy link

It adds new column Date. But sorting doesn't work normall. It sorts by Start Date or End Date in anyway... :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment