WordPress Snippets

Code Snippet

When done properly, external style sheets can be kept to a minimum size, removing the urgency for them to be placed in browser cache. However, if you are using a caching system or CDN, that can be difficult to overcome.

In the following, we use a time code when enqueueing the style sheet, which will overcome caching because our functions.php document will always be looking for the document saved with the specified time code, which should include our lastest changes.

PHP

Place the following code anywhere in your child theme’s functions.php document. I prefer to place style sheets and external scripts first thing in the document, after the opening block of information describing the functions.php document.

// register child styles with a time code (to overcome cache)
function my_important_styles() {
    wp_enqueue_style('custom-styles',
    get_stylesheet_directory_uri() . '/style.css',
    array(), filemtime(get_stylesheet_directory() . '/style.css'), false);
}
add_action('wp_enqueue_scripts', 'my_important_styles', '999');

Note

All modifications to a theme or plugin should be made by creating a child theme and placing the changes there. Changes made to the parent theme will be overwritten the next time it updates.


WordPress Notes:

  • All modifications to a theme or plugin should be made by creating a child theme and placing the changes there; changes made to the parent theme will be overwritten the next time it updates

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.