Last active
September 11, 2018 14:09
-
-
Save ciorici/4bfa8878e31919fa0e86c49ff71e0bc6 to your computer and use it in GitHub Desktop.
Fix WPZOOM Child Theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( !function_exists( 'chld_thm_cfg_parent_css' ) ): | |
function chld_thm_cfg_parent_css() { | |
wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( 'wpz-shortcodes','zoom-font-awesome' ) ); | |
} | |
endif; | |
add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css', 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment