%s

', $message ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Prevents the Customizer from being loaded on WordPress versions prior to 5.0. * * @since Bosa Crypto 1.0.0 * * @global string $wp_version WordPress version. */ function bosa_crypto_customize() { /* translators: %s - WordPress version*/ wp_die( sprintf( esc_html__( 'Bosa Crypto requires at least WordPress version 5.0. You are running version %s. Please upgrade and try again.', 'bosa-crypto' ), esc_html($GLOBALS['wp_version'] ) ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'bosa_crypto_customize' ); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 5.0. * * @since Bosa Crypto 1.0.0 * @global string $wp_version WordPress version. */ function bosa_crypto_preview() { if ( isset( $_GET['preview'] ) ) { /* translators: %s - WordPress version*/ wp_die( sprintf( esc_html__( 'Bosa Crypto requires at least WordPress version 5.0. You are running version %s. Please upgrade and try again.', 'bosa-crypto' ), esc_html( $GLOBALS['wp_version'] ) ) ); } } add_action( 'template_redirect', 'bosa_crypto_preview' );