WordPress
HTML
CSS
JavaScript
jQuery
SQL
PHP
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 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');
				
			

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.

WordPress
HTML
CSS
JavaScript
jQuery
SQL
PHP

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.