%s

', $message ); // WPCS xss ok. } /** * Prevents the Customizer from being loaded on PHP versions prior to 5.4. * * @since 1.0.0 * * @global const PHP_VERSION PHP version. */ function aamla_prevent_customize_load() { wp_die( sprintf( /* translators: %s: Installed PHP version */ esc_html__( 'aamla requires at least PHP version 5.4. You are running version %s. Please upgrade and try again.', 'aamla' ), PHP_VERSION ), '', array( 'back_link' => true ) ); // WPCS xss ok. 'PHP_VERSION' is a Predefined Constant. } add_action( 'load-customize.php', 'aamla_prevent_customize_load' ); /** * Prevents the Theme Preview from being loaded on PHP versions prior to 5.4. * * @since 1.0.0 * * @global const PHP_VERSION PHP version. */ function aagam_prevent_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( /* translators: %s: Installed PHP version */ esc_html__( 'aamla requires at least PHP version 5.4. You are running version %s. Please upgrade and try again.', 'aamla' ), PHP_VERSION ) ); // WPCS xss ok. 'PHP_VERSION' is a Predefined Constant. } } add_action( 'template_redirect', 'aagam_prevent_preview' );