%s

', wp_kses_post( wpautop( $message ) ) ); } /** * Prevents the Customizer from being loaded on WordPress versions prior to 4.7. * * @since Atlantic 1.0.0 * * @global string $wp_version WordPress version. */ function atlantic_customize() { $message = atlatic_require_message(); wp_die( wp_kses_post( $message ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'atlantic_customize' ); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.7. * * @since Atlantic 1.0.0 * * @global string $wp_version WordPress version. */ function atlantic_preview() { $message = atlatic_require_message(); if ( isset( $_GET['preview'] ) ) { wp_die( wp_kses_post( $message ) ); } } add_action( 'template_redirect', 'atlantic_preview' );