Without CSS, you have very limited choices to style your web pages. And without proper CSS inclusion inside WordPress, you can make it extremely hard for your theme's users to customize the theme's styling.
In this tutorial, we're going to have a look at the right way to enqueue CSS into WordPress with wp_enqueue_style()
.
In this post, you'll learn the right way to load an entire CSS stylesheet into your theme. If you just want to add some CSS to your WordPress site without coding, check out our post on How to Add Custom CSS to Your WordPress Site.
The Wrong Way to Load CSS in WordPress
Over the years, WordPress has grown its code in order to make it more and more flexible, and enqueueing CSS and JavaScript was a move on that direction. Our bad habits remained for a while, though. With knowing that WordPress introduced CSS and JavaScript enqueueing, we continued to add this code into our header.php files:
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>">
Or we added the code below into our functions.php files, thinking it was better:
<?php function add_stylesheet_to_head() { echo "<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>"; } add_action( 'wp_head', 'add_stylesheet_to_head' ); ?>
In the cases above, WordPress can't determine whether the CSS files are loaded in the page or not. That might be an awful mistake!
If another plugin uses the same CSS file, it wouldn't be able to check if the CSS file has already been included in the page. Then the plugin loads the same file for a second time, resulting in duplicate code.
Luckily, WordPress has a pretty easy solution to problems like this: registering and enqueueing stylesheets.
The Right Way to Load CSS in WordPress
As we said earlier, WordPress has grown a lot over the years and we have to think about every single WordPress user in the world.
In addition to them, we also have to take thousands of WordPress plugins into account. But don't let these big numbers scare you: WordPress has pretty useful functions for us to properly load CSS styles into WordPress.
Let's have a look.
Registering the CSS Files
If you're going to load CSS stylesheets, you should register them first with the wp_register_style()
function:
<?php wp_register_style( $handle, $src, $deps, $ver, $media ); ?>
$handle
(string, required) is unique name for your stylesheet. Other functions will use this "handle" to enqueue and print your stylesheet.$src
(string, required) refers to the URL of the stylesheet. You can use functions likeget_template_directory_uri()
to get the style files inside your theme's directory. Don't ever think about hard-coding it!$deps
(array, optional) handles names for dependent styles. If your stylesheet won't work if some other style file is missing, use this parameter to set the "dependencies".$ver
(string or boolean, optional) is the version number. You can use your theme's version number or make up one, if you want. If you don't want to use a version number, set it tonull
. It defaults tofalse
, which makes WordPress add its own version number.$media
(string, optional) is the CSS media types like "screen" or "handheld" or "print". If you're not sure you need to use this, don't use it. It defaults to "all".
Here's an example to the wp_register_style()
function:
<?php // wp_register_style() example wp_register_style( 'my-bootstrap-extension', // handle name get_template_directory_uri() . '/css/my-bootstrap-extension.css', // the URL of the stylesheet array( 'bootstrap-main' ), // an array of dependent styles '1.2', // version number 'screen', // CSS media type ); ?>
Registering styles is kind of "optional" in WordPress. If you don't think your style is going to be used by any plugin or you're not going to use any code to load it again, you're free to enqueue the style without registering it. See how it's done below.
Enqueueing the CSS Files
After registering our style file, we need to "enqueue" it to make it ready to load in our theme's <head>
section.
We do this with the wp_enqueue_style()
function:
<?php wp_enqueue_style( $handle, $src, $deps, $ver, $media ); ?>
The parameters are exactly the same with the wp_register_style()
function, so no need for repeating them.
But as we said the wp_register_style()
function isn't mandatory, I should tell you that you can use wp_enqueue_style()
in two different ways:
<?php // if we registered the style before: wp_enqueue_style( 'my-bootstrap-extension' ); // if we didn't register it, we HAVE to set the $src parameter! wp_enqueue_style( 'my-bootstrap-extension', get_template_directory_uri() . '/css/my-bootstrap-extension.css', array( 'bootstrap-main' ), null, // example of no version number... // ...and no CSS media type ); ?>
Keep in mind that if a plugin will need to find your stylesheet or you intend to load it in various parts in your theme, you should definitely register it first.
Loading the Styles Into Our Website
We can't just use the wp_enqueue_style()
function anywhere in our theme–we need to use "actions". There are three actions we can use for various purposes:
wp_enqueue_scripts
for loading scripts and styles in the front-end of our website,admin_enqueue_scripts
for loading scripts and styles in the pages of our administration panel,login_enqueue_scripts
for loading scripts and styles in the WordPress login page.
Here are the examples for these three actions:
<?php // load css into the website's front-end function mytheme_enqueue_style() { wp_enqueue_style( 'mytheme-style', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'mytheme_enqueue_style' ); // load css into the admin pages function mytheme_enqueue_options_style() { wp_enqueue_style( 'mytheme-options-style', get_template_directory_uri() . '/css/admin.css' ); } add_action( 'admin_enqueue_scripts', 'mytheme_enqueue_options_style' ); // load css into the login page function mytheme_enqueue_login_style() { wp_enqueue_style( 'mytheme-options-style', get_template_directory_uri() . '/css/login.css' ); } add_action( 'login_enqueue_scripts', 'mytheme_enqueue_login_style' ); ?>
Some Extra Functions
There are some very useful functions about CSS in WordPress: They allow us to print inline styles, check the enqueue state of our style files, add meta data for our style files, and deregister styles.
Let's have a look.
Adding Dynamic Inline Styles: wp_add_inline_style()
If your theme has options to customize the styling of the theme, you can use inline styling to print them with the wp_add_inline_style()
function:
<?php function mytheme_custom_styles() { wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/css/custom-style.css' ); $bold_headlines = get_theme_mod( 'headline-font-weight' ); // let's say its value is "bold" $custom_inline_style = '.headline { font-weight: ' . $bold_headlines . '; }'; wp_add_inline_style( 'custom-style', $custom_inline_style ); } add_action( 'wp_enqueue_scripts', 'mytheme_custom_styles' ); ?>
Quick and easy. Remember though: You have to use the same hadle name with the stylesheet you want to add inline styling after.
Checking the Enqueue State of the Stylesheet: wp_style_is()
In some cases, we might need the information on a style's state: Is it registered, is it enqueued, is it printed or waiting to be printed? You can determine it with the wp_style_is()
function:
<?php /* * wp_style_is( $handle, $state ); * $handle - name of the stylesheet * $state - state of the stylesheet: 'registered', 'enqueued', 'done' or 'to_do'. default: 'enqueued' */ // wp_style_is() example function bootstrap_styles() { if( wp_style_is( 'bootstrap-main' ) { // enqueue the bootstrap theme if bootstrap is already enqueued wp_enqueue_style( 'my-custom-bootstrap-theme', 'http://url.of/the/custom-theme.css' ); } } add_action( 'wp_enqueue_scripts', 'bootstrap_styles' ); ?>
Adding Meta Data to the Stylesheet: wp_style_add_data()
Here's an awesome function called wp_style_add_data()
which allows you to add meta data to your style, including conditional comments, RTL support and more!
Check it out:
<?php /* * wp_style_add_data( $handle, $key, $value ); * Possible values for $key and $value: * 'conditional' string Comments for IE 6, lte IE 7 etc. * 'rtl' bool|string To declare an RTL stylesheet. * 'suffix' string Optional suffix, used in combination with RTL. * 'alt' bool For rel="alternate stylesheet". * 'title' string For preferred/alternate stylesheets. */ // wp_style_add_data() example function mytheme_extra_styles() { wp_enqueue_style( 'mytheme-ie', get_template_directory_uri() . '/css/ie.css' ); wp_style_add_data( 'mytheme-ie', 'conditional', 'lt IE 9' ); /* * alternate usage: * $GLOBALS['wp_styles']->add_data( 'mytheme-ie', 'conditional', 'lte IE 9' ); * wp_style_add_data() is cleaner, though. */ } add_action( 'wp_enqueue_scripts', 'mytheme_ie_style' ); ?>
Awesome, isn't it?
If I'm not mistaken, this is the first tutorial ever written about this little—but useful—function.
Deregister Style Files with wp_deregister_style()
If you ever need to "deregister" a stylesheet (in order to re-register it with a modified version, for example), you can do it with wp_deregister_style()
.
Let's see an example:
<?php function mytheme_load_modified_bootstrap() { // if bootstrap is registered before... if( wp_script_is( 'bootstrap-main', 'registered' ) ) { // ...deregister it first... wp_deregister_style( 'bootstrap-main' ); // ...and re-register it with our own, modified bootstrap-main.css... wp_register_style( 'bootstrap-main', get_template_directory_uri() . '/css/bootstrap-main-modified.css' ); // ...and enqueue it! wp_enqueue_style( 'bootstrap-main' ); } } add_action( 'wp_enqueue_scripts', 'mytheme_load_modified_bootstrap' ); ?>
Although it's not required, you should always re-register another style if you deregister one – you might break something if you don't.
[There's also a similar function called wp_dequeue_style()
, which removes the enqueued stylesheets as its name suggests.
Loading CSS Only on Specific Pages
WordPress relies on multiple plugins to add different kind of functionality to a website. The CSS and JavaScript needs by those plugins is usually required on specific pages. This means that loading the same unused CSS on every page results in unnecessary bloat.
In this section, we will learn how to only load CSS into WordPress on those pages where it is actually required.
In the following code snippet, we register the scripts and styles for Chart.js library when the init
hook is fired. After that, we enqueue these files conditionally when the wp_enqueue_scripts
hook is fired.
The is_page()
function is used to determine if we are enqueuing the script and stylesheet on the right page. You can pass individual string and numbers or their arrays to check for multiple pages at once. In our case, the Chart.js files will be enqueued on pages that show sales and quarterly results.
<?php add_action('init', 'register_custom_styles_scripts'); function register_custom_styles_scripts() { wp_register_style( 'chartjs_css', 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.css' ); wp_register_script( 'chartjs_js', 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.js', '', null, true); } add_action( 'wp_enqueue_scripts', 'conditionally_enqueue_styles_scripts' ); function conditionally_enqueue_styles_scripts() { if ( is_page(array('sales', 'quarterly-results')) ) { wp_enqueue_script( 'chartjs_js' ); wp_enqueue_style( 'chartjs_css' ); } } ?>
Loading CSS in the Footer
Another way to improve the page load speed for users is to only load critical CSS in the head and load everything else in the footer.
The last parameter in wp_enqueue_script()
function allows us to load our scripts in the footer. Unfortunately, the corresponding wp_enqueue_style()
function does not have this parameter. The best way to ensure that the stylesheet is added to the footer is to use the wp_footer
action hook. It is used to output scripts or other data before the closing body
tag.
<?php function footer_add_chart_style() { wp_enqueue_style('chartjs_css', 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.css'); }; add_action( 'get_footer', 'footer_add_chart_style' ); ?>
Wrapping Everything Up
Congratulations, now you know everything about including CSS in WordPress correctly! Hope you enjoyed the tutorial.
Do you have any tips or experiences you want to share? Comment below and share your knowledge with us! And if you liked this article, don't forget to share it with your friends!
If you want to learn how to add CSS to your WordPress site without coding, check out our post on How to Add Custom CSS to Your WordPress Site.
Also, if you're making changes to a third-party theme, it's a good idea to create a child theme and make your edits there. Besides directly adding custom CSS rules to your WordPress theme, you can also safely enqueue external CSS files with the help of a child theme.
The Best WordPress Themes on ThemeForest
While you can do a lot with free themes, if you are creating professional WordPress sites, eventually you will want to explore paid themes. You can discover thousands of the best WordPress themes ever created on ThemeForest. These high-quality WordPress themes will improve your website experience for you and your visitors.
Here are a few of the best-selling and up-and-coming WordPress themes available on ThemeForest for 2020.
No comments:
Post a Comment