Last active
May 24, 2018 16:17
-
-
Save landbryo/eb18aea19ed5d5b3e3760f4e4127f09b to your computer and use it in GitHub Desktop.
Add custom css to dashboard via functions.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////// | |
// 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