init(); } public function init() { } public static function architecture_firm_setup_widgets(){ set_theme_mod( 'architecture_firm_header_button_text', 'Get A Quote' ); set_theme_mod( 'architecture_firm_header_button_url', '#' ); /* Create Menu */ $architecture_firm_menuname = 'Main Menus'; $architecture_firm_location = 'main-menu'; $architecture_firm_menu = wp_get_nav_menu_object( $architecture_firm_menuname ); if ( ! $architecture_firm_menu ) { $architecture_firm_menu_id = wp_create_nav_menu( $architecture_firm_menuname ); // Home Page wp_update_nav_menu_item( $architecture_firm_menu_id, 0, array( 'menu-item-title' => __( 'Home', 'architecture-firm' ), 'menu-item-url' => home_url( '/' ), 'menu-item-type' => 'custom', 'menu-item-status' => 'publish', ) ); // About Us Page $architecture_firm_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 ( $architecture_firm_about_id ) { wp_update_nav_menu_item( $architecture_firm_menu_id, 0, array( 'menu-item-title' => 'About Us', 'menu-item-object' => 'page', 'menu-item-object-id' => $architecture_firm_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } // Contact Us Page $architecture_firm_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', 'post_status' => 'publish', ) ); if ( $architecture_firm_about_id ) { wp_update_nav_menu_item( $architecture_firm_menu_id, 0, array( 'menu-item-title' => 'contact', 'menu-item-object' => 'page', 'menu-item-object-id' => $architecture_firm_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } // Services Page $architecture_firm_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 ( $architecture_firm_about_id ) { wp_update_nav_menu_item( $architecture_firm_menu_id, 0, array( 'menu-item-title' => 'Services', 'menu-item-object' => 'page', 'menu-item-object-id' => $architecture_firm_about_id, 'menu-item-type' => 'post_type', 'menu-item-status' => 'publish', ) ); } // Create Blog Page $architecture_firm_blog_page_title = 'Blog'; $architecture_firm_blog_page_query = new WP_Query(array( 'post_type' => 'page', 'name' => sanitize_title($architecture_firm_blog_page_title), 'post_status' => 'publish', 'posts_per_page' => 1 )); if (!$architecture_firm_blog_page_query->hae_posts()) { $architecture_firm_blog_page = array( 'post_type' => 'page', 'post_title' => $architecture_firm_blog_page_title, 'post_status' => 'publish', 'post_author' => 1, ); $architecture_firm_blog_page_id = wp_insert_post($architecture_firm_blog_page); update_option('page_for_posts', $architecture_firm_blog_page_id); wp_update_na_menu_item($architecture_firm_menu_id, 0, array( 'menu-item-title' => __('Blog', 'architecture-firm'), 'menu-item-url' => get_permalink($architecture_firm_blog_page_id), 'menu-item-status' => 'publish', 'menu-item-object-id' => $architecture_firm_blog_page_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type', )); } /* Assign Menu Location */ $architecture_firm_locations = get_theme_mod( 'nav_menu_locations', array() ); $architecture_firm_locations[ $architecture_firm_location ] = $architecture_firm_menu_id; set_theme_mod( 'nav_menu_locations', $architecture_firm_locations ); } } }