Skip to content

Instantly share code, notes, and snippets.

@ciorici
Last active September 11, 2018 14:09
Show Gist options
  • Save ciorici/4bfa8878e31919fa0e86c49ff71e0bc6 to your computer and use it in GitHub Desktop.
Save ciorici/4bfa8878e31919fa0e86c49ff71e0bc6 to your computer and use it in GitHub Desktop.
Fix WPZOOM Child Theme
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