X

How to check PHP version – WordPress

<?php
 
if ( version_compare(PHP_VERSION, '5.2.4', '<') ) {
    wp_die('PHP 5.2.4 is required.');
};
 
?>