Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active May 24, 2018 16:17
Show Gist options
  • Save landbryo/eb18aea19ed5d5b3e3760f4e4127f09b to your computer and use it in GitHub Desktop.
Save landbryo/eb18aea19ed5d5b3e3760f4e4127f09b to your computer and use it in GitHub Desktop.
Add custom css to dashboard via functions.php
//////////////////////
// DASHBOARD STYLES //
//////////////////////
function dashboard_custom_css() {
wp_enqueue_style('dashboard-style', get_stylesheet_directory_uri() . '/css/dashboard.css');
}
add_action('admin_head', 'dashboard_custom_css');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment