Advertisement
TangibleDesign

Untitled

Oct 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <?php
  2.  
  3. function myhome_dequeue() {
  4. wp_dequeue_script( 'myhome-estate-slider' );
  5. }
  6. add_action( 'wp_print_scripts', 'myhome_dequeue' );
  7.  
  8. function myhome_child_enqueue_styles() {
  9. wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array( 'normalize' ) );
  10. wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'normalize' ) );
  11.  
  12. if ( is_singular( 'estate' ) ) {
  13. wp_enqueue_script( 'myhome-estate-gallery-child', get_stylesheet_directory_uri() . '/assets/js/sliders/gallery-auto-height.js', array( 'jquery' ), null, true );
  14. }
  15. }
  16. add_action( 'wp_enqueue_scripts', 'myhome_child_enqueue_styles' );
  17.  
  18. function myhome_lang_setup() {
  19. load_child_theme_textdomain( 'myhome', get_stylesheet_directory() . '/languages' );
  20. }
  21. add_action( 'after_setup_theme', 'myhome_lang_setup' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement