This commit is contained in:
2025-12-11 12:19:33 +01:00
parent c89f252ce4
commit ccd3be1d88
4 changed files with 127 additions and 0 deletions

View File

@@ -271,3 +271,15 @@ if ( ! function_exists( 'hello_elementor_body_open' ) ) {
require HELLO_THEME_PATH . '/theme.php';
HelloTheme\Theme::instance();
add_action( 'wp_enqueue_scripts', 'hello_custom_styles', 999 );
function hello_custom_styles() {
wp_enqueue_style(
'hello-custom-style',
get_stylesheet_directory_uri() . '/assets/css/custom.css',
array(),
filemtime( get_stylesheet_directory() . '/assets/css/custom.css' ),
'all'
);
}