WordPress Snippets at WPcustoms

Plain CSS in admin area header

add your own css code when in wp-admin with this easy snippet. We hook into admin_head and insert our custom css. Modify as required.


/**
 * Snippet Name: Plain CSS in admin area header
 * Snippet URL: https://wpcustoms.net/snippets/custom-css-in-admin-area-header/
 */
  function my_custom_fonts() {
  echo '';
}
add_action('admin_head', 'my_custom_fonts');