Guest User

Untitled

a guest
Jan 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. to function my_conditional_enqueue_script1() {
  2. global $page;
  3. if ( is_single() && in_category( '19' ) ) {
  4. wp_enqueue_script( '/members/application/cart/views/public/js/cart.js' );
  5. }
  6. }
  7. add_action('wp_enqueue_scripts', 'my_conditional_enqueue_script1');
Add Comment
Please, Sign In to add comment