Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 8, 2021 13:33
Show Gist options
  • Save wpmu-authors/e18ee46ac24636cb40447ef22e1ff272 to your computer and use it in GitHub Desktop.
Save wpmu-authors/e18ee46ac24636cb40447ef22e1ff272 to your computer and use it in GitHub Desktop.
enqueue.php
add_action( 'admin_enqueue_scripts', 'dashboard_widget_display_enqueues' );
function dashboard_widget_display_enqueues( $hook ) {
if( 'index.php' != $hook ) {
return;
}
wp_enqueue_style( 'dashboard-widget-styles', plugins_url( '', __FILE__ ) . '/widgets.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment