9 lines
221 B
PHP
9 lines
221 B
PHP
<?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'))
|
|
);
|
|
}); |