Author Page

Add bellow code to functions.php file to functions.php file in child theme

Display Default Upcoming Events:

add_filter( 'el_author_listing_event_status', function(){ return 'upcoming'; } );

Display Default Opening Events:

add_filter( 'el_author_listing_event_status', function(){ return 'opening'; } );

Display Default Past Events:

add_filter( 'el_author_listing_event_status', function(){ return 'past'; } );

Last updated