Skip to content

Instantly share code, notes, and snippets.

@BeyondTheLoop
Created October 10, 2021 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BeyondTheLoop/42ff03ba0cf7b58d956523d4722c83e9 to your computer and use it in GitHub Desktop.
Save BeyondTheLoop/42ff03ba0cf7b58d956523d4722c83e9 to your computer and use it in GitHub Desktop.
Enqueue custom admin WordPress stylesheet
function enqueue_custom_admin_style_sheet() {
wp_register_style( 'name_of_custom_style_sheet', 'URL of style sheet goes here', false, '1.0.0' );
wp_enqueue_style('name_of_custom_style_sheet');
}
add_action( 'admin_enqueue_scripts', 'enqueue_custom_admin_style_sheet' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment