array( // Add the core-defined business info widget to the footer 1 area. 'footer' => array( 'text_business_info', 'text_about', 'recent-posts', ), // Add the core-defined business info widget to the footer 1 area. 'logo-side' => array( 'my_text' => array( // Widget $id -> set when creating a Widget Class 'custom_html' , // Widget $instance -> settings array( 'title' => '', 'content' => '
' ) ), 'filter' => true, 'visual' => true, ), ), // Specify the core-defined pages to create and add custom thumbnails to some of them. 'posts' => array( 'about' => array( 'template' => 'templates/page.php', 'post_type' => 'page', 'post_title' => esc_html__( 'About Us', 'bc-consulting' ), 'post_content' => '

Foundations of Excellence: Delve into Our Story

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!

Entrepreneur / Chairman

Executive Directors

Marketing Executive

Project Manager

' ), 'contact' => array( 'template' => 'templates/page.php', 'post_type' => 'page', 'post_title' => esc_html__( 'Contact', 'bc-consulting' ), 'post_content' => '

Who We Are

Serving Varied Industries

Creating a catchy and memorable tagline is crucial for marketing cleaner services. Here are some tagline ideas that emphasize cleanliness

Unique design

Unique design

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla, quam dolore nemo itaque.

Awesome feature

Awesome feature

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla, quam dolore nemo itaque.

Mobile First Approach

Mobile First Approach

Recusandae, quod perspiciatis, at dicta enim similique earum temporibus iusto accusamus dolore adipisci veritatis nulla distinctio quisquam, nesciunt reprehenderit itaque nihil culpa!

' ), ), // Create the custom image attachments used as post thumbnails for pages. 'theme_mods' => array( 'dialogue_text' => esc_html__('Your Trusted 24 Hours Service Provider!','bc-consulting'), '__fb_pro_link' =>'https://www.facebook.com/', '__tw_pro_link' =>'https://twitter.com/', '__you_pro_link' =>'https://www.youtube.com/', ), // Default to a static front page and assign the front and posts pages. // Set up nav menus for each of the two areas registered in the theme. 'nav_menus' => array( // Assign a menu to the "primary" location. 'menu-1' => array( 'name' => __( 'Main Menu', 'bc-consulting' ), 'items' => array( 'link_home', // Note that the core "home" page is actually a link in case a static front page is not used. 'page_about', 'page_blog', 'page_contact', ), ), ), ); /** * Filters bc-consulting array of starter content. * * @since bc-consulting 1.0.0 * * @param array $starter_content Array of starter content. */ return apply_filters( 'bc_consulting_get_starter_content', $starter_content ); }