Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. // wp_headの前に追加
  3. // wp_deregister_script('jquery') をしていると表示されないので注意
  4. // 一応ログインしていないと表示しないようにする
  5. if (current_user_can('editor') || current_user_can('administrator')) {
  6. wp_enqueue_script( 'wp-api' );
  7. }
  8. ?>
  9. <?php wp_head(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement