9 lines
213 B
PHP
9 lines
213 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
function hitmag_kirki_config() {
|
||
|
|
$args = array(
|
||
|
|
'url_path' => get_template_directory_uri() . '/inc/kirki/'
|
||
|
|
);
|
||
|
|
return $args;
|
||
|
|
}
|
||
|
|
add_filter( 'kirki/config', 'hitmag_kirki_config' );
|