0
How to enqueu css in wordpress? Somebody help?
Css in wordpress
2 Respuestas
+ 1
Insert this code to function.php
.
.
function funchw() {
wp_enqueue_style('style', get_stylesheet_uri() ) ;
}
add_action('wp_enqueu_scripts', 'funchw') ;
+ 1
Thank you😊