Guest User

Untitled

a guest
Jan 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function my_theme_enqueue_styles() {
  2.  
  3. $deps = array( 'woocommerce-layout', 'woocommerce-smallscreen', 'woocommerce-general');
  4.  
  5. wp_enqueue_style('header', get_template_directory_uri() . '/css/header.css', $deps, '3.2.6', 'all');
  6.  
  7. }
  8.  
  9. add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles');
Add Comment
Please, Sign In to add comment