Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_action( 'wp_head', 'add_custom_script_to_head' );
  2. function add_custom_script_to_head(){
  3. $user_ID = get_current_user_id();
  4. ?>
  5. //Javascript
  6. var user_ID = '<?php echo $user_ID ?>';
  7. <?php
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement