get_main_post_type(). return apply_filters( 'mec_post_type_name', 'mec-events' ); // phpcs:ignore } /** * Returns the ID of the main settings page of the plugin. * * @return string The settings page url. */ public static function get_settings_page(): string { return 'mec-event'; } /** * Returns the taxonomy used for the plugin's event categories. * * @return string */ public static function get_event_category_taxonomy(): string { return 'mec_category'; } }