%s

', $message ); } /** * Prevents the Customizer from being loaded on WordPress versions prior to 5.6. * * @global string $wp_version WordPress version. */ function business_aarambha_customize() { wp_die( sprintf( esc_html__( 'Business Aarambha requires at least WordPress version 5.6. You are running version %s. Please upgrade and try again.', 'business-aarambha' ), $GLOBALS['wp_version'] ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'business_aarambha_customize' ); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 5.6. * * @global string $wp_version WordPress version. */ function business_aarambha_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( esc_html__( 'Business Aarambha requires at least WordPress version 5.6. You are running version %s. Please upgrade and try again.', 'business-aarambha' ), $GLOBALS['wp_version'] ) ); } } add_action( 'template_redirect', 'business_aarambha_preview' );