| Server IP : 213.142.137.24 / Your IP : 216.73.216.122 Web Server : Apache System : Linux ns1.medyayapim.net 3.10.0-1160.11.1.el7.x86_64 #1 SMP Fri Dec 18 16:34:56 UTC 2020 x86_64 User : dgpilates.com_ooz9p0tadyh ( 10028) PHP Version : 8.0.30 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/dgpilates.com/httpdocs/wp-content/themes/bosa-yoga/inc/ |
Upload File : |
<?php
/**
* Bosa Yoga back compat functionality
*
* Prevents Bosa Yoga from running on WordPress versions prior to 5.0,
* since this theme is not meant to be backward compatible beyond that and
* relies on many newer functions and markup changes introduced in 5.0.
*
* @since Bosa Yoga 1.0.0
*/
/**
* Prevent switching to Bosa Yoga on old versions of WordPress.
*
* Switches to the default theme.
*
* @since Bosa Yoga 1.0.0
*/
function bosa_yoga_switch_theme() {
switch_theme( WP_DEFAULT_THEME );
unset( $_GET['activated'] );
add_action( 'admin_notices', 'bosa_yoga_upgrade_notice' );
}
add_action( 'after_switch_theme', 'bosa_yoga_switch_theme' );
/**
* Adds a message for unsuccessful theme switch.
*
* Prints an update nag after an unsuccessful attempt to switch to
* Bosa Yoga on WordPress versions prior to 5.0.
*
* @since Bosa Yoga 1.0.0
* @global string $wp_version WordPress version.
*/
function bosa_yoga_upgrade_notice() {
/* translators: %s - WordPress version*/
$message = sprintf( esc_html__( 'Bosa Yoga requires at least WordPress version 5.0. You are running version %s. Please upgrade and try again.', 'bosa-yoga' ), $GLOBALS['wp_version'] ) ;
printf( '<div class="error"><p>%s</p></div>', $message ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
/**
* Prevents the Customizer from being loaded on WordPress versions prior to 5.0.
*
* @since Bosa Yoga 1.0.0
*
* @global string $wp_version WordPress version.
*/
function bosa_yoga_customize() {
/* translators: %s - WordPress version*/
wp_die( sprintf( esc_html__( 'Bosa Yoga requires at least WordPress version 5.0. You are running version %s. Please upgrade and try again.', 'bosa-yoga' ), esc_html($GLOBALS['wp_version'] ) ), '', array(
'back_link' => true,
) );
}
add_action( 'load-customize.php', 'bosa_yoga_customize' );
/**
* Prevents the Theme Preview from being loaded on WordPress versions prior to 5.0.
*
* @since Bosa Yoga 1.0.0
* @global string $wp_version WordPress version.
*/
function bosa_yoga_preview() {
if ( isset( $_GET['preview'] ) ) {
/* translators: %s - WordPress version*/
wp_die( sprintf( esc_html__( 'Bosa Yoga requires at least WordPress version 5.0. You are running version %s. Please upgrade and try again.', 'bosa-yoga' ), esc_html( $GLOBALS['wp_version'] ) ) );
}
}
add_action( 'template_redirect', 'bosa_yoga_preview' );