wpseek.com
A WordPress-centric search engine for devs and theme authors
is_wp_version_compatible › WordPress Function
Since5.2.0
Deprecatedn/a
› is_wp_version_compatible ( $required )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Checks compatibility with the current WordPress version.
Related Functions: is_php_version_compatible, wp_version_check, wp_revisions_enabled, wp_post_revision_title, wp_verify_nonce
Source
function is_wp_version_compatible( $required ) { if ( defined( 'WP_RUN_CORE_TESTS' ) && WP_RUN_CORE_TESTS && isset( $GLOBALS['_wp_tests_wp_version'] ) ) { $wp_version = $GLOBALS['_wp_tests_wp_version']; } else { $wp_version = wp_get_wp_version(); } // Strip off any -alpha, -RC, -beta, -src suffixes. list( $version ) = explode( '-', $wp_version ); if ( is_string( $required ) ) { $trimmed = trim( $required ); if ( substr_count( $trimmed, '.' ) > 1 && str_ends_with( $trimmed, '.0' ) ) { $required = substr( $trimmed, 0, -2 ); } } return empty( $required ) || version_compare( $version, $required, '>=' ); }