This commit is contained in:
magepeopleteam 2020-09-20 12:15:42 +00:00
parent ab1749cd3a
commit 87c517705a
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,10 @@ if (!defined('ABSPATH')) {
add_action('admin_enqueue_scripts', 'mep_event_welcome_enqueue_scripts', 10, 1);
function mep_event_welcome_enqueue_scripts()
{
$current_screen = get_current_screen();
if ( 'mep_events_page_mep_event_welcome_page' != $current_screen->base ) {
return;
}
wp_enqueue_style('mep-welcome-style', plugin_dir_url(__DIR__) . 'inc/welcome/css/welcome.css', array());
}