Skip to content

Instantly share code, notes, and snippets.

@nakakaz11
Created June 20, 2014 03:21
Show Gist options
  • Save nakakaz11/cc99e663750074a4c215 to your computer and use it in GitHub Desktop.
Save nakakaz11/cc99e663750074a4c215 to your computer and use it in GitHub Desktop.
Wordpress functions.php内で使っている変数をJSで使いたいとき ref: http://qiita.com/nakakaz11/items/b67de932a6979f60425f
function functionsInfoToJs() {
get_currentuserinfo();
global $user_level;
echo '<script type="text/javascript">var _g_user_level = "' . $user_level . '";</script>'; // JS内はよしなに
}
// 管理画面内に出力
//add_action( 'admin_print_scripts', 'functionsInfoToJs' );
// 全体の画面内に出力
add_action( 'wp_print_scripts', 'functionsInfoToJs' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment