Skip to content

Instantly share code, notes, and snippets.

@yoren
Created October 28, 2014 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoren/9b7bf2d3c5142b5c1eb2 to your computer and use it in GitHub Desktop.
Save yoren/9b7bf2d3c5142b5c1eb2 to your computer and use it in GitHub Desktop.
Change default style number in WordPress
<?php
function sp_wp_default_styles($styles)
{
//use our app version constant
$styles->default_version = SCHOOLPRESS_VERSION;
}
add_action("wp_default_styles", "sp_wp_default_styles");
@yoren
Copy link
Author

yoren commented Oct 28, 2014

Change SCHOOLPRESS_VERSION to any number you want.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment