%s

', $message ); } /** * Prevent the Customizer from being loaded on WordPress versions prior to 3.9. * * @since Being 1.0 */ function being_customize() { wp_die( sprintf( esc_html__( 'Being requires at least WordPress version 3.9. You are running version %s. Please upgrade and try again.', 'being' ), $GLOBALS['wp_version'] ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'being_customize' ); /** * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.9. * * @since Being 1.0 */ function being_customize_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( esc_html__( 'Being requires at least WordPress version 3.9. You are running version %s. Please upgrade and try again.', 'being' ), $GLOBALS['wp_version'] ) ); } } add_action( 'template_redirect', 'being_customize_preview' );