%s

', $message ); } /** * Prevents the Customizer from being loaded on WordPress versions prior to 4.4. * * @since boat seller 1.0 * * @global string $wp_version WordPress version. */ function boatseller_customize() { /* Translators: Just to check WordPress Version */ wp_die( sprintf( __('boat seller requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'boatseller' ), $GLOBALS['wp_version'] ), '', array( 'back_link' => true, ) ); } add_action( 'load-customize.php', 'boatseller_customize' ); /** * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.4. * * @since boat seller 1.0 * * @global string $wp_version WordPress version. */ function boatseller_preview() { /* Translators: Just to check WordPress Version */ if ( isset( $_GET['preview'] ) ) { wp_die( sprintf( __('boat seller requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'boatseller' ), $GLOBALS['wp_version'] ) ); } } add_action( 'template_redirect', 'boatseller_preview' );