If you only import style.css, I can put this on the top of the head
<link rel="stylesheet" href="<?php%20echo%20get_stylesheet_uri();%20?>" type="text/css" media="screen" /> If you add other styles, then add another one on the top of the head
<link rel="stylesheet" href="<?php%20echo%20get_template_directory_uri();?>/bootstrap.min.css">
Another recommended method:
Add the following method to functions.php
Copy code
/**
* Load front-end scripts and style sheets
* Load the main style sheet style.css
*/
add_action(‘wp_enqueue_scripts’, ‘my_scripts’);
function my_scripts() {
//Load style.css in the theme
wp_enqueue_style(‘global’, get_stylesheet_uri());
//Load the xx.css style in the css folder
wp_enqueue_style(‘index-style’, get_template_directory_uri().’/css/xx.css’);
//Similarly, load xx.js in the js folder
wp_enqueue_script(‘index-js’, get_template_directory_uri().’/js/xx.js’);
//Load the default jquery library before loading tool.js
wp_enqueue_script(‘lingfeng-lazy’,get_template_directory_uri().’/js/tool.js’,array(‘jquery’));
}
Copy code
Then add this in the head to automatically import the style~
<?php wp_head();?>
Search
Popular on Blogar
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1489 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1775 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1322 Views
Social Media Marketing – 53 Resources For First Time Entrepreneurs
- October 24th, 2023
- 855 Views
Email Marketing-Advantages and disadvantages of email marketing
- October 24th, 2023
- 805 Views
Search Engine Optimization-Tell Google which pages you don’t want crawled
- October 24th, 2023
- 791 Views
Social Media Marketing – What is Pinterest?
- October 24th, 2023
- 769 Views
Email Marketing-Revenue Generation Email Marketing Campaigns
- October 24th, 2023
- 764 Views
Search Engine Optimization-Let Google see your page the same way a user does
- October 24th, 2023
- 758 Views
Search Engine Optimization-How to Leverage Link Blending and Stage 2 Link Building to Maximize Your Rankings
- October 24th, 2023
- 752 Views
Recent Post
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1489 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1775 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1322 Views
VMware cannot install VMware Tools, prompts VMCI, memory driver
- November 25th, 2024
- 114 Views
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.