Skip to content

Instantly share code, notes, and snippets.

@joecue
Last active March 12, 2021 20:05
Show Gist options
  • Save joecue/438279a7c33d8e3d1031e24cebac41c7 to your computer and use it in GitHub Desktop.
Save joecue/438279a7c33d8e3d1031e24cebac41c7 to your computer and use it in GitHub Desktop.
Find What Custom WordPress $hook name is.
//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