| Server IP : 62.84.247.111 / Your IP : 216.73.216.4 Web Server : Apache/2 System : Linux srv1a.dorffdesign.nl 4.18.0-553.139.1.el8_10.x86_64 #1 SMP Tue Jun 30 18:41:23 EDT 2026 x86_64 User : ss10042020 ( 1027) PHP Version : 8.3.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/ss10042020/public_html/wp-content/themes/Divi/onboarding/ |
Upload File : |
<?php
/**
* Onboarding functions.php file.
*
* @package Divi
* @subpackage onboarding
*
* @since ??
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Trigger redirect to onboarding page after theme activation.
*
* @return void
*/
function et_onboarding_trigger_redirect() {
// Do not redirect if WP-CLI is active.
if ( defined( 'WP_CLI' ) && WP_CLI ) {
return;
}
if ( ! class_exists( 'ET_Onboarding' ) ) {
// get_template_directory() does not output a trailing slash.
// {@see https://developer.wordpress.org/reference/functions/get_template_directory/}.
require_once get_template_directory() . '/onboarding/onboarding.php';
}
ET_Onboarding::redirect_to_onboarding_page();
}
add_action(
'after_switch_theme',
'et_onboarding_trigger_redirect'
);
/**
* Trigger remove transients when theme is changed.
*
* @return void
*/
function et_onboarding_remove_transients() {
if ( ! class_exists( 'ET_Onboarding' ) ) {
// get_template_directory() does not output a trailing slash.
// {@see https://developer.wordpress.org/reference/functions/get_template_directory/}.
require_once get_template_directory() . '/onboarding/onboarding.php';
}
ET_Onboarding::remove_transients();
}
add_action(
'switch_theme',
'et_onboarding_remove_transients'
);