'dir_not_exists' ) ); die(); } $child_theme_resource_folder = get_parent_theme_file_path( 'inc/admin/setup-wizard/' . $child_theme_name ); copy( $child_theme_resource_folder . '/functions.php', $child_theme_path . '/functions.php' ); copy( $child_theme_resource_folder . '/screenshot.png', $child_theme_path . '/screenshot.png' ); copy( $child_theme_resource_folder . '/style.css', $child_theme_path . '/style.css' ); $allowed_themes = get_site_option( 'allowedthemes' ); $allowed_themes[ $child_theme_name ] = true; update_site_option( 'allowedthemes', $allowed_themes ); } if ( $parent_theme_name !== $child_theme_name ) { switch_theme( $child_theme_name ); echo wp_json_encode( array( 'status' => 'success' ) ); die(); } } } Install_Child_Theme::get_instance();