Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. add_action('wp_enqueue_scripts', function () {
  2. wp_enqueue_script('main.js', asset_path('scripts/main.js'), ['jquery'], null, true);
  3.  
  4. if (is_front_page()) {
  5. $shops = ['a', 'b', 'c'];
  6. wp_localize_script('main.js', 'shopItems', $shops);
  7. }
  8.  
  9. }, 100);
  10.  
  11. add_action('wp_enqueue_scripts', function () {
  12. wp_enqueue_script('main.js', asset_path('scripts/main.js'), ['jquery'], null, true);
  13.  
  14. $shops = ['a', 'b', 'c'];
  15. wp_localize_script('main.js', 'shopItems', $shops);
  16.  
  17. }, 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement