%s

', $message ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Prevents the Customizer from being loaded on PHP versions prior to 5.6. * * @since 1.0.0 * * @global const PHP_VERSION PHP version. */ function cambay_prevent_customize_load() { wp_die( sprintf( /* translators: %s: Installed PHP version */ esc_html__( 'cambay requires at least PHP version 5.6. You are running version %s. Please upgrade and try again.', 'cambay' ), PHP_VERSION ), '', array( 'back_link' => true ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } add_action( 'load-customize.php', 'cambay_prevent_customize_load' ); /** * Prevents the Theme Preview from being loaded on PHP versions prior to 5.6. * * @since 1.0.0 * * @global const PHP_VERSION PHP version. */ function cambay_prevent_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( /* translators: %s: Installed PHP version */ esc_html__( 'cambay requires at least PHP version 5.6. You are running version %s. Please upgrade and try again.', 'cambay' ), PHP_VERSION ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } add_action( 'template_redirect', 'cambay_prevent_preview' );