Advertisement
rene_hamburger

Current OceanWP child theme settings

Jan 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 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( 'child_theme_configurator_css' ) ):
  9.     function child_theme_configurator_css() {
  10.         wp_enqueue_style( 'chld_thm_cfg_child', trailingslashit( get_stylesheet_directory_uri() ) . 'style.css', array( 'font-awesome','simple-line-icons','magnific-popup','oceanwp-style' ) );
  11.     }
  12. endif;
  13. add_action( 'wp_enqueue_scripts', 'child_theme_configurator_css' );
  14.  
  15. // END ENQUEUE PARENT ACTION
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement