Description
Returns current theme version.
Usage
$string = bw_get_theme_version( $theme, $theme_object );Parameters
- $theme
- ( string ) required – Theme name – no longer used
- $theme_object
- ( object ) required – The theme object
Returns
string theme versionSource
File name: oik/libs/oik_themes.phpLines:
1 to 8 of 8
function bw_get_theme_version( $theme, $theme_object ) { if ( $theme_object->exists() ) { $version = $theme_object->Version; } else { $version = "Not installed"; } return( $version ); }View on GitHub View on Trac
Called by
1 to 2 of 2
