%s

', $message );// WPCS: XSS ok. } /** * Prevents the Customizer from being loaded on WordPress versions prior to 4.4. * * @since Catch Mag 1.0 * * @global string $wp_version WordPress version. */ function catch_mag_customize() { /* translators: %s: current WordPress version. */ $message = sprintf( __( 'Catch Magazine requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'catch-mag' ), $GLOBALS['wp_version'] ); // WPCS: XSS ok. wp_die( $message, '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'catch_mag_customize' ); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.4. * * @since Catch Mag 1.0 * * @global string $wp_version WordPress version. */ function catch_mag_preview() { if ( isset( $_GET['preview'] ) ) { /* translators: %s: current WordPress version. */ wp_die( sprintf( __( 'Catch Magazine requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'catch-mag' ), $GLOBALS['wp_version'] ) );// WPCS: XSS ok. } } add_action( 'template_redirect', 'catch_mag_preview' );