You appear to be a bot. Output may be restricted
Description
Return the plugin version of the oik base plugin
Usage
$string = bw_oik_version();
Parameters
Returns
string $version e.g. 3.0.0-alpha, 3.0.0-beta.mmdd, 3.0.0-RCn, 3.0.0, 3.0.1TO DO
Consider moving this function to the oik_plugins library. In the mean time, if 'oik_plugins' can't be loaded we'll assume the version is the same as this library version.Source
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 9 of 9
function bw_oik_version() { $oik_plugins = oik_require_lib( "oik_plugins" ); if ( $oik_plugins && !is_wp_error( $oik_plugins ) ) { $version = bw_get_plugin_version(); } else { $version = BOBBFUNC_INCLUDED; } return( $version ); }View on GitHub View on Trac