%s

', $message ); } /** * Prevents the Customizer from being loaded * * @since 1.3.4 */ function envy_blog_bc_customize() { wp_die( sprintf( __( 'Envy Blog requires at least PHP version 5.4.0. You are running version %s. Please upgrade and try again.', 'envy-blog' ), PHP_VERSION ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'envy_blog_bc_customize' ); /** * Prevents the Theme Preview from being loaded * * @since 1.3.4 */ function envy_blog_bc_preview() { if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( __( 'Envy Blog requires at least PHP version 5.4.0. You are running version %s. Please upgrade and try again.', 'envy-blog' ), PHP_VERSION ) ); } } add_action( 'template_redirect', 'envy_blog_bc_preview' );