Skip to content

Instantly share code, notes, and snippets.

@SErr0r
Created June 20, 2016 15:08
Show Gist options
  • Save SErr0r/2f4b73ac1213729f228ab21987df308d to your computer and use it in GitHub Desktop.
Save SErr0r/2f4b73ac1213729f228ab21987df308d to your computer and use it in GitHub Desktop.
Get theme version
<?php
//* Get version of the current theme
//* @static
//* @return string
//* @access public
public static function getThemeVersion() {
$theme_data = wp_get_theme();
return $theme_data->Version;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment