Answers for "how to locate css files in wordpress"

1

how to fetch particular css file in wordpress

<?php
   wp_enqueue_style('my-stylesheet', get_template_directory_uri() . '/css/style.css');
?>
Posted by: Guest on March-09-2022
3

how to add css file in wordpress

wp_enqueue_style( 'style', get_stylesheet_uri() );
Posted by: Guest on May-28-2020

Code answers related to "how to locate css files in wordpress"

Browse Popular Code Answers by Language