-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
61 lines (47 loc) · 1.9 KB
/
functions.php
File metadata and controls
61 lines (47 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* Sets up theme defaults and registers support for various WordPress features.
*
*/
if ( ! defined('MATERIALIS_THEME_REQUIRED_PHP_VERSION')) {
define('MATERIALIS_THEME_REQUIRED_PHP_VERSION', '5.3.0');
}
add_action('after_switch_theme', 'materialis_check_php_version');
function materialis_check_php_version()
{
// Compare versions.
if (version_compare(phpversion(), MATERIALIS_THEME_REQUIRED_PHP_VERSION, '<')) :
// Theme not activated info message.
add_action('admin_notices', 'materialis_php_version_notice');
// Switch back to previous theme.
switch_theme(get_option('theme_switched'));
return false;
endif;
}
function materialis_php_version_notice()
{
?>
<div class="notice notice-alt notice-error notice-large">
<h4><?php esc_html_e('Materialis theme activation failed!', 'materialis'); ?></h4>
<p>
<?php printf(esc_html__('You need to update your PHP version to use the %s.', 'materialis'), "<strong>Materialis</strong>"); ?> <br/>
<?php printf(
// Translators: 1 is the users PHP version and 2 is the required PHP version.
esc_html__('Current PHP version is %1$s and the minimum required version is %2$s', 'materialis'),
'<strong>' . phpversion() . '</strong>',
'<strong>' . MATERIALIS_THEME_REQUIRED_PHP_VERSION . '</strong>'
); ?>
</p>
</div>
<?php
}
if (version_compare(phpversion(), MATERIALIS_THEME_REQUIRED_PHP_VERSION, '>=')) {
require_once get_template_directory() . "/inc/functions.php";
if ( ! materialis_can_show_cached_value("materialis_cached_kirki_style_materialis")) {
if ( ! materialis_skip_customize_register()) {
do_action("materialis_customize_register_options");
}
}
} else {
add_action('admin_notices', 'materialis_php_version_notice');
}