%s

', esc_html( bongo_get_insufficient_requirements_message() ) ); } /** * Prevents the Customizer from being loaded when requirements are not met. */ function bongo_customize() { wp_die( esc_html( bongo_get_insufficient_requirements_message() ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'bongo_customize' ); /** * Prevents the Theme Preview from being loaded when requirements are not met. */ function bongo_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( esc_html( bongo_get_insufficient_requirements_message() ) ); } } add_action( 'template_redirect', 'bongo_preview' );