/*
Name: Yellow Springs Ohio
Theme URI: https://www.yellowspringsohio.org
Version: 1.1.0
Tested up to: 5.8
Requires PHP: 7.4
Text Domain: Yellow Springs
*/
// Enable Rank Math SEO for The Events Calendar events
add_filter( 'rank_math/exclude_post_types', function( $excluded_post_types ) {
    if ( ($key = array_search( 'tribe_events', $excluded_post_types )) !== false ) {
        unset( $excluded_post_types[$key] );
    }
    return $excluded_post_types;
});