I’m modifying related events to show by category. I am using the code snippet following the instructions from a forum post here as follows:
/* Tribe, change related posts arguments */
function tribe_modify_related_posts_args ( $args ) {
$args['meta_key'] = '_EventStartDate';
$args['orderby'] = 'meta_value';
$args['order'] = 'ASC';
return $args;
}
add_filter( 'tribe_related_posts_args', 'tribe_modify_related_posts_args' );
What is the name of the meta_key to show related events by category, and order them by eventStartDate?