Skip to content

Instantly share code, notes, and snippets.

@yoren
Created October 28, 2014 12:26
Show Gist options
  • Select an option

  • Save yoren/9b7bf2d3c5142b5c1eb2 to your computer and use it in GitHub Desktop.

Select an option

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

yoren commented Oct 28, 2014

Copy link
Copy Markdown
Author

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