No 🙁
I use theme mods, but in this example:
$value = get_theme_mod( ‘option_name’, ‘default_value’ );
I’m not sure what I need to change the two parameters. Is possible give a real example, please? I also request your assistance in paying for a few hours?
I’m assuming you are not familiar with the Core WordPress Customizer API…
Kirki is not a replacement for the core APIs, nor is it intended to be used without any prior knowledge of them. It is simply a wrapper, simplifying some operations and extending the WP Core Customizer.
One of the greatest articles that will help you get familiar with the core customizer concepts can be found on http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/
and then of course there’s this article on developer.ww.wp.xz.cn about the customizer: https://developer.ww.wp.xz.cn/themes/advanced-topics/customizer-api/
Now, an example…
If your setting has an ID “my_setting” with a default value “some-default-value” as in the example on https://github.com/aristath/kirki/wiki/Getting-Started#adding-fields then to get the value you’d have to do this:
$value = get_theme_mod( 'my_setting', 'some-default-value' );
I hope that helps!
Fantastic. Please excuse me for my primary post. Now working perfect 🙂