From 07b2ba9ff5fe1cf4bba34de578c29aee85c48b83 Mon Sep 17 00:00:00 2001 From: Nathan Kinkade Date: Mon, 16 Jun 2014 16:03:41 +0000 Subject: Initial commit of Vortant theme based on WordPress twentythirteen stock theme. --- inc/back-compat.php | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 inc/back-compat.php (limited to 'inc/back-compat.php') diff --git a/inc/back-compat.php b/inc/back-compat.php new file mode 100644 index 0000000..329bcaa --- /dev/null +++ b/inc/back-compat.php @@ -0,0 +1,63 @@ +

%s

', $message ); +} + +/** + * Prevent the Theme Customizer from being loaded on WordPress versions prior to 3.6. + * + * @since Twenty Thirteen 1.0 + */ +function twentythirteen_customize() { + wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ), '', array( + 'back_link' => true, + ) ); +} +add_action( 'load-customize.php', 'twentythirteen_customize' ); + +/** + * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4. + * + * @since Twenty Thirteen 1.0 + */ +function twentythirteen_preview() { + if ( isset( $_GET['preview'] ) ) { + wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ) ); + } +} +add_action( 'template_redirect', 'twentythirteen_preview' ); -- cgit v1.2.3