%s

', $message ); } /** * Prevent the Customizer from being loaded on WordPress versions prior to 4.2. */ function abulogics_theme_customize() { wp_die( sprintf( __( 'This theme requires at least WordPress version 4.2. You are running version %s. Please upgrade and try again.', 'abulogics' ), $GLOBALS['wp_version'] ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'abulogics_theme_customize' ); /** * Prevent the theme from being loaded on WordPress versions prior to 4.2. */ function abulogics_theme_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( __( 'This theme requires at least WordPress version 4.2. You are running version %s. Please upgrade and try again.', 'abulogics' ), $GLOBALS['wp_version'] ) ); } } add_action( 'template_redirect', 'abulogics_theme_preview' );