Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created September 23, 2012 15:02
Show Gist options
  • Save pippinsplugins/3771925 to your computer and use it in GitHub Desktop.
Save pippinsplugins/3771925 to your computer and use it in GitHub Desktop.
Load the EDD admin CSS on the dashboard
function pw_edd_load_admin_css( $hook ) {
if( $hook != 'index.php' )
return;
wp_enqueue_style('edd-admin', EDD_PLUGIN_URL . 'includes/css/edd-admin.css');
}
add_action( 'admin_enqueue_scripts', 'pw_edd_load_admin_css' ;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment