Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created January 30, 2015 08:57
Show Gist options
  • Save igmoweb/412204dd24652add8c94 to your computer and use it in GitHub Desktop.
Save igmoweb/412204dd24652add8c94 to your computer and use it in GitHub Desktop.
Enqueue a dynamic style
<?php
add_action( 'wp_enqueue_scripts', 'dolly_load_styles' );
function dolly_load_styles() {
$css_url = add_query_arg( 'dolly-styles', 'true', home_url() );
wp_enqueue_style( 'dolly-styles', $css_url );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment