Skip to content

Instantly share code, notes, and snippets.

@AdelDima
Created June 11, 2017 09:37
Show Gist options
  • Save AdelDima/1f90c58a0acef0440654de6eacdcadd5 to your computer and use it in GitHub Desktop.
Save AdelDima/1f90c58a0acef0440654de6eacdcadd5 to your computer and use it in GitHub Desktop.
Check WordPress Version
<?php
/* Check WordPress Version */
function dima_wp_version_check( $version = '3.0' ) {
global $wp_version;
if ( version_compare( $wp_version, $version, ">=" ) ) {
return true;
}
return false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment