Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php
  2. // Exit if accessed directly
  3. if ( !defined( 'ABSPATH' ) ) exit;
  4.  
  5. // BEGIN ENQUEUE PARENT ACTION
  6. // AUTO GENERATED - Do not modify or remove comment markers above or below:
  7.  
  8. if ( !function_exists( 'chld_thm_cfg_locale_css' ) ):
  9. function chld_thm_cfg_locale_css( $uri ){
  10. if ( empty( $uri ) && is_rtl() && file_exists( get_template_directory() . '/rtl.css' ) )
  11. $uri = get_template_directory_uri() . '/rtl.css';
  12. return $uri;
  13. }
  14. endif;
  15. add_filter( 'locale_stylesheet_uri', 'chld_thm_cfg_locale_css' );
  16.  
  17. if ( !function_exists( 'chld_thm_cfg_parent_css' ) ):
  18. function chld_thm_cfg_parent_css() {
  19. wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( 'fontawesome','et-line-font','elegent-font' ) );
  20. }
  21. endif;
  22. add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css', 10 );
  23.  
  24. // END ENQUEUE PARENT ACTION
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement