Skip to content

Instantly share code, notes, and snippets.

@norcross
Created December 8, 2012 02:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norcross/4238211 to your computer and use it in GitHub Desktop.
Save norcross/4238211 to your computer and use it in GitHub Desktop.
WP version check
// do a version check
$version = get_bloginfo('version');
if ($version < 3.5) {
//do whatever you were doing before
} else {
// do something new for the swanky 3.5 UI
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment