%s

', esc_html( avada_compat_message() ) ); } /** * Kills the loading of the customizer. * * @since 6.0 * @return void */ function avada_compat_load_customize() { wp_die( esc_html( avada_compat_message() ), '', array( 'back_link' => true ) ); } /** * Kills the customizer previewer on installs prior to WP 4.7. * * @since 6.0 * @return void */ function avada_compat_preview() { if ( isset( $_GET['preview'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification wp_die( esc_html( avada_compat_message() ) ); } } /** * If this is a theme update show the admin notice. * * @since 6.0 */ $avada_db_version = get_option( 'avada_version', false ); if ( $avada_db_version ) { avada_compat_switch_theme( '' ); }