init(); } public function init() { } public static function cafeteria_elementor_setup_widgets(){ /* Create Menu */ $cafeteria_elementor_menuname = 'Primary Menu'; $cafeteria_elementor_location = 'main-menu'; $cafeteria_elementor_menu = wp_get_nav_menu_object( $cafeteria_elementor_menuname ); if ( ! $cafeteria_elementor_menu ) { $cafeteria_elementor_menu_id = wp_create_nav_menu( $cafeteria_elementor_menuname ); // Home Page wp_update_nav_menu_item( $cafeteria_elementor_menu_id, 0, array( 'menu-item-title' => __( 'Home', 'cafeteria-elementor' ), 'menu-item-url' => home_url( '/' ), 'menu-item-type' => 'custom', 'menu-item-status' => 'publish', ) ); // About Us Page $cafeteria_elementor_about_id = wp_insert_post( array( 'post_type' => 'page', 'post_content' => 'We are committed to providing reliable, professional, and result-oriented solutions tailored to meet individual needs. Our goal is to empower people with the right guidance, knowledge, and support to help them make informed decisions for a better future.

Our mission is to deliver high-quality services with honesty, transparency, and dedication. We focus on understanding client requirements and offering practical solutions that create long-term value.

With a client-centric approach, experienced professionals, and a commitment to excellence, we ensure every individual receives the attention and guidance they deserve. We believe in building trust through quality service and consistent results.', 'post_title' => 'About Us', 'post_status' => 'publish', ) ); if ( $cafeteria_elementor_about_id ) { wp_update_nav_menu_item( $cafeteria_elementor_menu_id, 0, array( 'menu-item-title' => 'About Us', 'menu-item-object' => 'page', 'menu-item-object-id' => $cafeteria_elementor_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } // Services Page $cafeteria_elementor_about_id = wp_insert_post( array( 'post_type' => 'page', 'post_content' => 'We are committed to providing reliable, professional, and result-oriented solutions tailored to meet individual needs. Our goal is to empower people with the right guidance, knowledge, and support to help them make informed decisions for a better future.

Our mission is to deliver high-quality services with honesty, transparency, and dedication. We focus on understanding client requirements and offering practical solutions that create long-term value.

With a client-centric approach, experienced professionals, and a commitment to excellence, we ensure every individual receives the attention and guidance they deserve. We believe in building trust through quality service and consistent results.', 'post_title' => 'Services', 'post_status' => 'publish', ) ); if ( $cafeteria_elementor_about_id ) { wp_update_nav_menu_item( $cafeteria_elementor_menu_id, 0, array( 'menu-item-title' => 'Services', 'menu-item-object' => 'page', 'menu-item-object-id' => $cafeteria_elementor_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } // Pages Page $cafeteria_elementor_about_id = wp_insert_post( array( 'post_type' => 'page', 'post_content' => 'We are committed to providing reliable, professional, and result-oriented solutions tailored to meet individual needs. Our goal is to empower people with the right guidance, knowledge, and support to help them make informed decisions for a better future.

Our mission is to deliver high-quality services with honesty, transparency, and dedication. We focus on understanding client requirements and offering practical solutions that create long-term value.

With a client-centric approach, experienced professionals, and a commitment to excellence, we ensure every individual receives the attention and guidance they deserve. We believe in building trust through quality service and consistent results.', 'post_title' => 'Pages', 'post_status' => 'publish', ) ); if ( $cafeteria_elementor_about_id ) { wp_update_nav_menu_item( $cafeteria_elementor_menu_id, 0, array( 'menu-item-title' => 'Pages', 'menu-item-object' => 'page', 'menu-item-object-id' => $cafeteria_elementor_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } // Create Blog Page $cafeteria_elementor_blog_page_title = 'Blog'; $cafeteria_elementor_blog_page_query = new WP_Query(array( 'post_type' => 'page', 'name' => sanitize_title($cafeteria_elementor_blog_page_title), 'post_status' => 'publish', 'posts_per_page' => 1 )); if (!$cafeteria_elementor_blog_page_query->hae_posts()) { $cafeteria_elementor_blog_page = array( 'post_type' => 'page', 'post_title' => $cafeteria_elementor_blog_page_title, 'post_status' => 'publish', 'post_author' => 1, ); $cafeteria_elementor_blog_page_id = wp_insert_post($cafeteria_elementor_blog_page); update_option('page_for_posts', $cafeteria_elementor_blog_page_id); wp_update_na_menu_item($cafeteria_elementor_menu_id, 0, array( 'menu-item-title' => __('Blog', 'cafeteria-elementor'), 'menu-item-url' => get_permalink($cafeteria_elementor_blog_page_id), 'menu-item-status' => 'publish', 'menu-item-object-id' => $cafeteria_elementor_blog_page_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type', )); } // Contact Us Page $cafeteria_elementor_about_id = wp_insert_post( array( 'post_type' => 'page', 'post_content' => 'We are committed to providing reliable, professional, and result-oriented solutions tailored to meet individual needs. Our goal is to empower people with the right guidance, knowledge, and support to help them make informed decisions for a better future.

Our mission is to deliver high-quality services with honesty, transparency, and dedication. We focus on understanding client requirements and offering practical solutions that create long-term value.

With a client-centric approach, experienced professionals, and a commitment to excellence, we ensure every individual receives the attention and guidance they deserve. We believe in building trust through quality service and consistent results.', 'post_title' => 'Contact Us', 'post_status' => 'publish', ) ); if ( $cafeteria_elementor_about_id ) { wp_update_nav_menu_item( $cafeteria_elementor_menu_id, 0, array( 'menu-item-title' => 'Contact Us', 'menu-item-object' => 'page', 'menu-item-object-id' => $cafeteria_elementor_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } /* Assign Menu Location */ $cafeteria_elementor_locations = get_theme_mod( 'nav_menu_locations', array() ); $cafeteria_elementor_locations[ $cafeteria_elementor_location ] = $cafeteria_elementor_menu_id; set_theme_mod( 'nav_menu_locations', $cafeteria_elementor_locations ); } } }