You appear to be a bot. Output may be restricted
Description
Checks the required version of oik
Usage
$bool = oik_fields_check_oik_version( $version );
Parameters
- $version
- ( string ) optional default: 3.3.0 – the required minimum version
Returns
bool true if the required version is satisfied
Source
File name: oik-fields/oik-fields.php
Lines:
1 to 10 of 10
function oik_fields_check_oik_version( $version="3.3.0") { $active_version = oik_version(); if ( $active_version ) { $active = version_compare( $active_version, $version, "ge" ); } else { $active = true; } bw_trace2( $active, "Active version: $active_version. Checking for: $version.", true ); return $active; }