Name | Update Time |
Netflix | October 18, 2024 4:49 pm |
Disney+ | October 18, 2024 11:03 am |
Max | October 18, 2024 11:34 am |
ChatGPT 4 | October 18, 2024 2:27 pm |
Spotify | October 18, 2024 11:49 am |
Prime Video | October 18, 2024 5:17 pm |
Codecademy | October 18, 2024 5:08 pm |
Grammarly | October 16, 2024 2:31 pm |
Canva Pro | October 18, 2024 5:12 pm |
Udemy Premium Cookies | September 2, 2024 2:53 pm |
Although our theme has a style.css file, it is not used yet. Let’s enqueue it now. Add the following code to functions.php, so that the styles added in style.css will be applied to the theme’s styles:
function my_custom_theme_enqueue() {wp_enqueue_style( ‘my-custom-theme’, get_stylesheet_uri() );
}
add_action( ‘wp_enqueue_scripts’, ‘my_custom_theme_enqueue’ );
get_stylesheet_uri() is a helper function used to retrieve the URI of the current theme’s stylesheet. If we wanted to enqueue any other files, we would do this:
wp_enqueue_style( ‘my-stylesheet’, get_template_directory_uri() . ‘/css/style.css’ );
Our theme doesn’t have any scripts, if it did, we would enqueue them like this:
function my_custom_theme_enqueue() {
wp_enqueue_style( ‘my-custom-theme’, get_stylesheet_uri() );
wp_enqueue_script( ‘my-scripts’, get_template_directory_uri() . ‘/js/scripts.js’ );
}
add_action( ‘wp_enqueue_scripts’, ‘my_custom_theme_enqueue’ );
One exception to the above is WordPress pre-registered scripts, in which case you only need to provide the first parameter ($handle):
wp_enqueue_script( ‘jquery’ );
Write all the paths in the functions.php file: (The following code comes from WP University https://www.wpdaxue.com/docs/theme-handbook/basics/including-css-javascript)
function add_theme_scripts() {
wp_enqueue_style( ‘style’, get_stylesheet_uri() );
wp_enqueue_style( ‘slider’, get_template_directory_uri() . ‘/css/slider.css’, array(), ‘1.1’, ‘all’);
wp_enqueue_script( ‘script’, get_template_directory_uri() . ‘/js/script.js’, array ( ‘jquery’ ), 1.1, true);
if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) { wp_enqueue_script( ‘comment-reply’ );} } add_action( ‘wp_enqueue_scripts’, ‘add_theme_scripts’ );
Then in header.php, you can reference it through <?php wp_head(); ?>. (<?php wp_head(); ?> refers to other elements such as titles in addition to styles. Many installed plug-ins rely on this hook.)
Search
Popular on Blogar
2024 Codecademy Premium Account Cookies
- October 18th, 2024
- 1467 Views
2024 Grammarly Premium Account Cookies
- October 16th, 2024
- 2531 Views
2024 ChatGPT 4 Premium Account Free Cookies
- October 18th, 2024
- 2695 Views
2024 Canva Pro Free Team Invite Link And Cookies
- October 18th, 2024
- 4682 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1680 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 1098 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1376 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1654 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1246 Views
WordPress-How To Install Elementor
- August 12th, 2024
- 98 Views
WordPress-How to list custom post-type?
- August 26th, 2024
- 97 Views
2024 HBOMax Premium Accounts
- October 18th, 2024
- 959 Views
How to Customize WordPress Excerpts
- August 19th, 2024
- 93 Views
How to remove wordpress icon from website
- August 14th, 2024
- 91 Views
WordPress Gravatar avatar cached locally
- August 22nd, 2024
- 89 Views
Remove category base from WordPress URL
- August 16th, 2024
- 87 Views
Recent Post
2024 Codecademy Premium Account Cookies
- October 18th, 2024
- 1467 Views
2024 Grammarly Premium Account Cookies
- October 16th, 2024
- 2531 Views
2024 ChatGPT 4 Premium Account Free Cookies
- October 18th, 2024
- 2695 Views
2024 Canva Pro Free Team Invite Link And Cookies
- October 18th, 2024
- 4682 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1680 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 1098 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1376 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1654 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1246 Views
VMware cannot install VMware Tools, prompts VMCI, memory driver
- November 25th, 2024
- 30 Views
More Post
- 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.