Add META Tags, Scripts, and Stylesheets to the WordPress Header and Footer

By  on  

There are times where you may want to conditionally inject stylesheets or scripts into your header or footer, or you'd simply prefer to inject those resources via PHP instead of place the HTML in template files directly.  WordPress' ever-powerful add_filter function provides the a method for injecting stylesheets or scripts into the header, as well as scripts into the footer.  Here's how!

// Add items to the header!
function shimify() {
	echo '<!--[if lt IE 9]><script src="/wp-content/themes/mytheme/shim.js"></script><![endif]-->';
	echo '<style>/* some styles here */</style>';
	echo '<meta http-equiv="content-type" content="text/html;" />';
}
add_filter('wp_head', 'shimify');

// Add items to the footer
function add_requirejs() {
	echo '<script src="/wp-content/themes/mytheme/requirejs.js"></script>';
}
add_filter('wp_footer', 'add_requirejs');

The add_filter function, which accepts the filter type, action function, and optional priority, provides the means to inject stylesheets and JavaScript files wherever desired.  You may want to conditionally inject a different Google Analytics account if you use a WordPress install that loads different content depending on hostname.  Do not use this technique if you're adding stylesheets or scripts for your plugin -- those should be added with the proper WordPress functions!

Recent Features

  • By
    Conquering Impostor Syndrome

    Two years ago I documented my struggles with Imposter Syndrome and the response was immense.  I received messages of support and commiseration from new web developers, veteran engineers, and even persons of all experience levels in other professions.  I've even caught myself reading the post...

  • By
    Introducing MooTools Templated

    One major problem with creating UI components with the MooTools JavaScript framework is that there isn't a great way of allowing customization of template and ease of node creation. As of today, there are two ways of creating: new Element Madness The first way to create UI-driven...

Incredible Demos

  • By
    Styling CSS Print Page Breaks

    It's important to construct your websites in a fashion that lends well to print. I use a page-break CSS class on my websites to tell the browser to insert a page break at strategic points on the page. During the development of my...

  • By
    Introducing MooTools LinkAlert

    One of my favorite Firefox plugins is called LinkAlert. LinkAlert shows the user an icon when they hover over a special link, like a link to a Microsoft Word DOC or a PDF file. I love that warning because I hate the surprise...

Discussion

  1. chrismccoy

    you should really avoid doing it that way, echoing tags, you should use wp_enqueue_script and wp_enqueue_style instead

    • For plugins sure, but it’s not as important for theme scripts. Additionally, these techniques could be used for META tags too.

  2. This definitely is not a proper way of including scripts in WordPress and should be avoided. Function wp_enqueue_script has a parameter to include the scripts in the footer and should be used instead of the above methods.

    With built in WordPress function you can easily control script dependencies and make sure that nothing is included twice …

  3. If you want to add css and js to individual posts or pages you could use my plugin perpost-code: http://wordpress.org/extend/plugins/superslider-perpost-code/ it provides a meta box on the edit screen for your css or javascript, it also provides a shortcode to display that same code into your post, check it out, you’ll love it!

    I also agree with Codeforest, wp_enqueue_script and wp_enqueue_style are the way to go, especially if you are using a minify plugin, they usually only minify code and script loaded via the enqueue function

  4. SpencerW

    I agree with the others this is not the right approach. You should use the right enqueue command. Apart from duplication, it allows you to also specify dependencies such as jquery for your javascript.
    Also performance plugins that rely on finding the js/css for a page as part of the
    combination and minification process will fail.

    You can limit specific code and css to a specific page or post using templates or with a plugin as already recommended above.

  5. Joe wattson

    hi David, I know about adding javascripts at the footer and header of the page. But adding stylesheet at the bottom of the page is something new and it drives me crazy? Is it really possible to use stylesheets at the footer?

  6. ou may want to conditionally inject a different Google Analytics account if you use a WordPress install that loads different content depending on hostname, allows you to also specify dependencies such as jquery for your javascript.

  7. alin

    This method can be useful when you going to make a theme with unlimited colors. This helps me thanks.

  8. This technique is perfect. WordPress themselves use it in the Twenty Seventeen theme (which should help some of you understand when this was written since comments aren’t dated).

  9. If you really want to go nuts, this technique can be used alongside NOWDOC to asynchronously load all of your scripts in parallel. https://wordpress.stackexchange.com/a/263733/117731

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!