Last active
November 27, 2022 21:08
-
-
Save lyrathemes/7f5c791b7351b7cadd7ab9faaba0b204 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
add_action( 'wp_enqueue_scripts', 'kale_child_enqueue_styles' ); | |
function kale_child_enqueue_styles() { | |
$parent_style = 'kale-style'; | |
$deps = array('bootstrap', 'bootstrap-select', 'fontawesome', 'fontawesome-all', 'owl-carousel'); | |
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' , $deps); | |
wp_enqueue_style( 'kale-style-child', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); | |
} | |
function kale_get_option($key){ | |
global $kale_defaults; | |
$parent_theme = get_template_directory(); | |
$parent_theme_slug = basename($parent_theme); | |
$parent_theme_mods = get_option( "theme_mods_{$parent_theme_slug}"); | |
$value = ''; | |
$child_value = get_theme_mod($key); | |
if(!empty($child_value)){ | |
$value = $child_value; | |
} | |
else if (!empty($parent_theme_mods) && isset($parent_theme_mods[$key])) { | |
$value = $parent_theme_mods[$key]; | |
} else if (is_array($kale_defaults) && array_key_exists($key, $kale_defaults)) | |
$value = get_theme_mod($key, $kale_defaults[$key]); | |
return $value; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm sorry this is a bit late, but if you run into any further issues with the child theme please feel free to contact our support team, and we'll be more than happy to help out:
https://www.lyrathemes.com/support/