%s

', $message); } endif; /** * Prevents the Customizer from being loaded on WordPress versions prior to 4.7. * @global string $wp_version WordPress version. * * @since 1.0.0 */ if (!function_exists('hypermarket_customize')): function hypermarket_customize() { wp_die(sprintf(__('Hypermarket requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'hypermarket') , $GLOBALS['wp_version']) , '', array( 'back_link' => true, )); } endif; add_action('load-customize.php', 'hypermarket_customize'); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.7. * @global string $wp_version WordPress version. * * @since 1.0.0 */ if (!function_exists('hypermarket_preview')): function hypermarket_preview() { if (isset($_GET['preview'])): wp_die(sprintf(__('Hypermarket requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'hypermarket') , $GLOBALS['wp_version'])); endif; } endif; add_action('template_redirect', 'hypermarket_preview');