Skapade stöd för theme.css i temat

This commit is contained in:
2026-04-07 10:49:03 +02:00
parent f12c169383
commit 158c92516f
3 changed files with 16 additions and 6 deletions

9
functions.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
add_action('wp_enqueue_scripts', function() {
wp_enqueue_style(
'my-theme-custom',
get_theme_file_uri('theme.css'),
array(),
filemtime(get_theme_file_path('theme.css'))
);
});