Skip to content

Instantly share code, notes, and snippets.

@mdemrs
Created March 9, 2015 16:52
Show Gist options
  • Save mdemrs/0f2dfface5aa75e7793a to your computer and use it in GitHub Desktop.
Save mdemrs/0f2dfface5aa75e7793a to your computer and use it in GitHub Desktop.
wp: Load custom admin css
//load custom admin css
function wpc_load_custom_admin_css(){
wp_enqueue_style('wpc_admin_css', plugin_url('css/wpc-admin.css', __FILE__));
}
add_action('admin_enqueue_scripts', 'wpc_load_custom_admin_css');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment