2022-12-15 19:06:02 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
function hitmag_kirki_config() {
|
|
|
|
|
$args = array(
|
2025-02-28 08:42:11 +01:00
|
|
|
'url_path' => get_template_directory_uri() . '/inc/kirki/',
|
|
|
|
|
'disable_loader' => true
|
2022-12-15 19:06:02 +01:00
|
|
|
);
|
|
|
|
|
return $args;
|
|
|
|
|
}
|
|
|
|
|
add_filter( 'kirki/config', 'hitmag_kirki_config' );
|