add cookies

This commit is contained in:
2025-06-04 01:32:16 +03:00
parent 14fbcc73de
commit b1697d2b5a
6 changed files with 21 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ add_action( 'wp_enqueue_scripts', function () {
$style_ver = filemtime(get_template_directory() . $fstyle);
$script_ver = filemtime(get_template_directory() . $fscript);
wp_enqueue_style('vij-style', get_template_directory_uri() . $fstyle, array(), $style_ver.'8');
wp_enqueue_style('vij-style', get_template_directory_uri() . $fstyle, array(), $style_ver.'10');
wp_enqueue_script('vij-script', get_template_directory_uri() . $fscript, array(), $script_ver, 5);
}