Last active
March 12, 2021 20:05
-
-
Save joecue/438279a7c33d8e3d1031e24cebac41c7 to your computer and use it in GitHub Desktop.
Find What Custom WordPress $hook name is.
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
//Function Prefixed to not collide with other LCCC related functions or current plugins and WP Core. | |
function lc_load_custom_wp_admin_style($hook ) { | |
wp_die($hook ); | |
} | |
add_action('admin_enqueue_scripts', 'lc_load_custom_wp_admin_style' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment