error checking WP version
-
I’m currently testing on WP 4.0 beta and found that
function themolio_is_wp_version($is_ver)
called by functions.php line 66
is wrong and return false, while shoul return true (4.0 is > 3.4)
I simply use the wp buil-in:global $wp_version; if ( version_compare( $wp_version, '3.4', '>=' ) ) { ...
- The topic ‘error checking WP version’ is closed to new replies.