Advertisement
  1. Web Design
  2. WordPress

Loading CSS Into WordPress With Enqueue Style

Scroll to top
Read Time: 11 min

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 in that direction. Our bad habits remained for a while, though. While knowing that WordPress introduced CSS and JavaScript enqueueing, we continued to add this code into our header.php files:

1
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>">
2

Or we added the code below into our functions.php files, thinking it was better:

1
<?php
2
3
function add_stylesheet_to_head() {
4
	echo "<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>";
5
}
6
7
add_action( 'wp_head', 'add_stylesheet_to_head' );
8
9
?>

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:

1
<?php
2
wp_register_style( $handle, $src, $deps, $ver, $media );
3
?>
  • $handle (string, required) is a 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 like get_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 one up if you want. If you don't want to use a version number, set it to null. It defaults to false, which makes WordPress add its own version number.
  • $media (string, optional) is the CSS media types like "screen", "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 of the wp_register_style() function:

1
<?php
2
3
// wp_register_style() example

4
wp_register_style(
5
	'my-bootstrap-extension', // handle name

6
	get_template_directory_uri() . '/css/my-bootstrap-extension.css', // the URL of the stylesheet

7
	array( 'bootstrap-main' ), // an array of dependent styles

8
	'1.2', // version number

9
	'screen', // CSS media type

10
);
11
12
?>

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:

1
<?php
2
wp_enqueue_style( $handle, $src, $deps, $ver, $media );
3
?>

The parameters are exactly the same with the wp_register_style() function, so there's no need to repeat them.

But as we said that the wp_register_style() function isn't mandatory, I should tell you that you can use wp_enqueue_style() in two different ways:

1
<?php
2
3
// if we registered the style before:

4
wp_enqueue_style( 'my-bootstrap-extension' );
5
6
// if we didn't register it, we HAVE to set the $src parameter!

7
wp_enqueue_style(
8
	'my-bootstrap-extension',
9
	get_template_directory_uri() . '/css/my-bootstrap-extension.css',
10
	array( 'bootstrap-main' ),
11
	null, // example of no version number...

12
	// ...and no CSS media type

13
);
14
15
?>

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:

Here are the examples for these three actions:

1
<?php
2
3
// load css into the website's front-end

4
function mytheme_enqueue_style() {
5
	wp_enqueue_style( 'mytheme-style', get_stylesheet_uri() ); 
6
}
7
add_action( 'wp_enqueue_scripts', 'mytheme_enqueue_style' );
8
9
// load css into the admin pages

10
function mytheme_enqueue_options_style() {
11
	wp_enqueue_style( 'mytheme-options-style', get_template_directory_uri() . '/css/admin.css' ); 
12
}
13
add_action( 'admin_enqueue_scripts', 'mytheme_enqueue_options_style' );
14
15
// load css into the login page

16
function mytheme_enqueue_login_style() {
17
	wp_enqueue_style( 'mytheme-options-style', get_template_directory_uri() . '/css/login.css' ); 
18
}
19
add_action( 'login_enqueue_scripts', 'mytheme_enqueue_login_style' );
20
21
?>

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 metadata 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:

1
<?php
2
3
function mytheme_custom_styles() {
4
	wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/css/custom-style.css' );
5
	$bold_headlines = get_theme_mod( 'headline-font-weight' ); // let's say its value is "bold"

6
	$custom_inline_style = '.headline { font-weight: ' . $bold_headlines . '; }';
7
	wp_add_inline_style( 'custom-style', $custom_inline_style );
8
}
9
add_action( 'wp_enqueue_scripts', 'mytheme_custom_styles' );
10
11
?>

Quick and easy. Remember, though: You have to use the same handle 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:

1
<?php
2
3
/*

4
 * wp_style_is( $handle, $state );

5
 * $handle - name of the stylesheet

6
 * $state - state of the stylesheet: 'registered', 'enqueued', 'done' or 'to_do'. default: 'enqueued'

7
 */
8
9
// wp_style_is() example

10
function bootstrap_styles() {
11
12
	if( wp_style_is( 'bootstrap-main' ) {
13
    
14
		// enqueue the bootstrap theme if bootstrap is already enqueued

15
		wp_enqueue_style( 'my-custom-bootstrap-theme', 'http://url.of/the/custom-theme.css' );
16
        
17
	}
18
    
19
}
20
add_action( 'wp_enqueue_scripts', 'bootstrap_styles' );
21
22
?>

Adding Metadata to the Stylesheet: wp_style_add_data()

Here's an awesome function called wp_style_add_data() which allows you to add metadata to your style, including conditional comments, RTL support, and more!

Check it out:

1
<?php
2
3
/*

4
 * wp_style_add_data( $handle, $key, $value );

5
 * Possible values for $key and $value:

6
 * 'conditional' string      Comments for IE 6, lte IE 7 etc.

7
 * 'rtl'         bool|string To declare an RTL stylesheet.

8
 * 'suffix'      string      Optional suffix, used in combination with RTL.

9
 * 'alt'         bool        For rel="alternate stylesheet".

10
 * 'title'       string      For preferred/alternate stylesheets.

11
 */
12
13
// wp_style_add_data() example

14
function mytheme_extra_styles() {
15
	wp_enqueue_style( 'mytheme-ie', get_template_directory_uri() . '/css/ie.css' );
16
	wp_style_add_data( 'mytheme-ie', 'conditional', 'lt IE 9' );
17
	/*

18
	 * alternate usage:

19
	 * $GLOBALS['wp_styles']->add_data( 'mytheme-ie', 'conditional', 'lte IE 9' );

20
	 * wp_style_add_data() is cleaner, though.

21
	 */
22
}
23
24
add_action( 'wp_enqueue_scripts', 'mytheme_ie_style' );
25
26
?>

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:

1
<?php
2
3
function mytheme_load_modified_bootstrap() {
4
	// if bootstrap is registered before...

5
	if( wp_script_is( 'bootstrap-main', 'registered' ) ) {
6
		// ...deregister it first...

7
		wp_deregister_style( 'bootstrap-main' );
8
		// ...and re-register it with our own, modified bootstrap-main.css...

9
		wp_register_style( 'bootstrap-main', get_template_directory_uri() . '/css/bootstrap-main-modified.css' );
10
		// ...and enqueue it!

11
		wp_enqueue_style( 'bootstrap-main' );
12
	}
13
}
14
15
add_action( 'wp_enqueue_scripts', 'mytheme_load_modified_bootstrap' );
16
17
?>

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 kinds of functionality to a website. The CSS and JavaScript needed 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 the 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 strings 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.

1
<?php
2
3
add_action('init', 'register_custom_styles_scripts');
4
5
function register_custom_styles_scripts() {
6
    wp_register_style( 'chartjs_css', 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.css' );
7
    wp_register_script( 'chartjs_js', 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.js', '', null, true);
8
}
9
10
11
add_action( 'wp_enqueue_scripts', 'conditionally_enqueue_styles_scripts' );
12
13
function conditionally_enqueue_styles_scripts() {
14
15
    if ( is_page(array('sales', 'quarterly-results')) ) {
16
        wp_enqueue_script( 'chartjs_js' );
17
        wp_enqueue_style( 'chartjs_css' );
18
    }
19
}
20
21
?>

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 the 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.

1
<?php
2
3
function footer_add_chart_style() {
4
    wp_enqueue_style('chartjs_css', 'https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.css');
5
};
6
add_action( 'get_footer', 'footer_add_chart_style' );
7
8
?>

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 2021.

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Web Design tutorials. Never miss out on learning about the next big thing.
Advertisement
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.