Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * 管理画面に独自JSを読み込む = コンパイルしたwp-admin.coffeeを管理画面に読ませる
  5. */
  6.  
  7. function dashboard_custom_files(){
  8.  
  9. // js読み込み - 依存ファイルにjQueryを指定
  10. // wp_enqueue_script( 'handle', ファイル, 依存関係, バージョン, trueでフッタで読み込み)
  11. wp_enqueue_script( 'custom_script', get_template_directory_uri().'/assets/js/wp-admin.js', array('jquery'), '', true);
  12.  
  13. }
  14. add_action('admin_enqueue_scripts', 'dashboard_custom_files');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement