| 1 |
<?php |
| 2 |
|
| 3 |
add_action('admin_notices', 'phastpress_php_version_notice'); |
| 4 |
|
| 5 |
function phastpress_php_version_notice() { |
| 6 |
?> |
| 7 |
<div class="error notice"> |
| 8 |
<p> |
| 9 |
<b>Sorry, PhastPress won't work here.</b> |
| 10 |
Like WordPress, PhastPress requires at least PHP version 5.6.20. |
| 11 |
Get in touch with your hosting provider for an upgrade. |
| 12 |
</p> |
| 13 |
</div> |
| 14 |
<?php |
| 15 |
} |
| 16 |
|