Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2. add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
  3. function theme_enqueue_styles() {
  4. wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION . 'c' , 'all' );
  5. wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );
  6.  
  7. if( is_page( array( 'about-me', 'contact', 'social-media'))) {
  8.  
  9. wp_enqueue_style( 'td-theme-child', get_stylesheet_directory_uri().'/style2.css'. 'c', 'all' );
  10. }
  11.  
  12. }
  13.  
  14. wp_enqueue_style( 'td-theme-child2', get_stylesheet_directory_uri().'/style2.css'. 'c', 'all' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement