load css file
This commit is contained in:
parent
ca69ded645
commit
7fd25bed72
8
functions.php
Normal file
8
functions.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
add_action('init', 'custom_stylesheet');
|
||||
|
||||
function custom_stylesheet() {
|
||||
wp_register_style( 'custom-styles', get_template_directory_uri() . '/style.css' );
|
||||
}
|
||||
wp_enqueue_style( 'custom-styles' );
|
Loading…
Reference in New Issue
Block a user