Skip to content

Instantly share code, notes, and snippets.

@miya0001
Created May 7, 2011 17:12
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 miya0001/960652 to your computer and use it in GitHub Desktop.
Save miya0001/960652 to your computer and use it in GitHub Desktop.
WordPress管理画面のhook_suffixをJavaScriptコンソールに出力する
<?php
/*
Plugin name: Hook Suffix Console
*/
add_action("admin_head", 'suffix2console');
function suffix2console() {
global $hook_suffix;
if (is_user_logged_in()) {
$str = "<script type=\"text/javascript\">console.log('%s')</script>";
printf($str, $hook_suffix);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment