wp/wp-content/themes/twentyfourteen/inc/back-compat.php
changeset 7 cf61fcea0001
parent 5 5e2f62d02dcd
equal deleted inserted replaced
6:490d5cc509ed 7:cf61fcea0001
    42  * Prevent the Customizer from being loaded on WordPress versions prior to 3.6.
    42  * Prevent the Customizer from being loaded on WordPress versions prior to 3.6.
    43  *
    43  *
    44  * @since Twenty Fourteen 1.0
    44  * @since Twenty Fourteen 1.0
    45  */
    45  */
    46 function twentyfourteen_customize() {
    46 function twentyfourteen_customize() {
    47 	wp_die( sprintf( __( 'Twenty Fourteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentyfourteen' ), $GLOBALS['wp_version'] ), '', array(
    47 	wp_die(
    48 		'back_link' => true,
    48 		sprintf( __( 'Twenty Fourteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentyfourteen' ), $GLOBALS['wp_version'] ), '', array(
    49 	) );
    49 			'back_link' => true,
       
    50 		)
       
    51 	);
    50 }
    52 }
    51 add_action( 'load-customize.php', 'twentyfourteen_customize' );
    53 add_action( 'load-customize.php', 'twentyfourteen_customize' );
    52 
    54 
    53 /**
    55 /**
    54  * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.
    56  * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.