Why am I not able to load my custom CSS?

2019-08-19 08:15发布

问题:

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.

标签: php wordpress