'Demo alone', 'import_file_url' => 'https://siodex.com/demo/wp2/demo-data/alone.xml', 'import_widget_file_url' => 'https://siodex.com/demo/wp2/demo-data/widgets.wie', 'import_notice' => __( 'After you import this demo, you need to setup home page & blog page from setting > Reading Settings > Homepage & Posts page. With Change the menu from the menu options', 'alone' ), ), ); } add_filter( 'pt-ocdi/import_files', 'alone_import_files' ); function alone_after_import_setup() { // Assign menus to their locations. $main_menu = get_term_by( 'name', 'main-menu', 'nav_menu' ); set_theme_mod( 'nav_menu_locations', array( 'main-menu' => $main_menu->term_id, // replace 'main-menu' here with the menu location identifier from register_nav_menu() function ) ); // Assign front page and posts page (blog page). $front_page_id = get_page_by_title( 'drak-version' ); $blog_page_id = get_page_by_title( 'Blog' ); update_option( 'show_on_front', 'page' ); update_option( 'page_on_front', $front_page_id->ID ); update_option( 'page_for_posts', $blog_page_id->ID ); } add_action( 'pt-ocdi/after_import', 'alone_after_import_setup' );