Answers for "wordpress add css tag"

PHP
2

how to add css file in wordpress

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

how to add style .css in wp

// add in your header.php
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>">
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language