function file
<?php
function test_theme(){
wp_enqueue_style("customestyle", get_stylesheet_uri() )
}
add_action( 'wp_enqueue_scripts', 'test_theme' );
and I added wp_head to my header. I also have stylesheet file in my root folder.
function file
<?php
function test_theme(){
wp_enqueue_style("customestyle", get_stylesheet_uri() )
}
add_action( 'wp_enqueue_scripts', 'test_theme' );
and I added wp_head to my header. I also have stylesheet file in my root folder.