Lines:
1 to 25 of 25
<?php /** * Twenty Fourteen back compat functionality * * Prevents Twenty Fourteen from running on WordPress versions prior to 3.6, * since this theme is not meant to be backward compatible beyond that * and relies on many newer functions and markup changes introduced in 3.6. * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ /* function twentyfourteen_switch_theme() – Prevent switching to Twenty Fourteen on old versions of WordPress. */ add_action( 'after_switch_theme', 'twentyfourteen_switch_theme' ); /* function twentyfourteen_upgrade_notice() – Add message for unsuccessful theme switch. */ /* function twentyfourteen_customize() – Prevent the Customizer from being loaded on WordPress versions prior to 3.6. */ add_action( 'load-customize.php', 'twentyfourteen_customize' ); /* function twentyfourteen_preview() – Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4. */ add_action( 'template_redirect', 'twentyfourteen_preview' );