Answers for "wp"

0

wp

add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
function theme_name_scripts() {
   wp_enqueue_style( 'style-name', get_stylesheet_uri() . "/css/bootstrap.css" );
   wp_enqueue_style( 'style-name', get_stylesheet_uri() . "/css/bootstrap-responsive.css" );
}
Posted by: Guest on March-20-2022
0

wp

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
Posted by: Guest on March-20-2022

Browse Popular Code Answers by Language