esc_html__( 'Primary Menu', 'architecture-designer' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support('custom-logo'); /* * WooCommerce Plugin Support */ add_theme_support( 'woocommerce' ); // Gutenberg wide images. add_theme_support( 'align-wide' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'assets/css/editor-style.css', architecturedesigner_google_font() ) ); //Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'architecturedesigner_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; add_action( 'after_setup_theme', 'architecturedesigner_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function architecturedesigner_content_width() { $GLOBALS['content_width'] = apply_filters( 'architecturedesigner_content_width', 1170 ); } add_action( 'after_setup_theme', 'architecturedesigner_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function architecturedesigner_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar Widget Area', 'architecture-designer' ), 'id' => 'architecturedesigner-sidebar-primary', 'description' => __( 'The Primary Widget Area', 'architecture-designer' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Widget Area', 'architecture-designer' ), 'id' => 'architecturedesigner-footer-widget-area', 'description' => __( 'The Footer Widget Area', 'architecture-designer' ), 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'WooCommerce Widget Area', 'architecture-designer' ), 'id' => 'architecturedesigner-woocommerce-sidebar', 'description' => __( 'This Widget area for WooCommerce Widget', 'architecture-designer' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'architecturedesigner_widgets_init' ); /** * All Styles & Scripts. */ require_once get_template_directory() . '/inc/enqueue.php'; /** * Nav Walker fo Bootstrap Dropdown Menu. */ require_once get_template_directory() . '/inc/class-wp-bootstrap-navwalker.php'; /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require_once get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/architecturedesigner-customizer.php'; require_once get_template_directory() . '/inc/tab-control.php'; // for header function architecturedesigner_header_reset_settings() { remove_theme_mod('hide_show_sticky'); remove_theme_mod('topheader_emailicon'); remove_theme_mod('topheader_emailtext'); remove_theme_mod('topheader_mobicon'); remove_theme_mod('topheader_mobtext'); remove_theme_mod('header_icon1'); remove_theme_mod('header_icon1link'); remove_theme_mod('header_icon2'); remove_theme_mod('header_icon2link'); remove_theme_mod('header_icon3'); remove_theme_mod('header_icon3link'); remove_theme_mod('header_icon4'); remove_theme_mod('header_icon4link'); remove_theme_mod('header_icon5'); remove_theme_mod('header_icon5link'); remove_theme_mod('topheader_bgcol'); remove_theme_mod('topheader_iconcol'); remove_theme_mod('topheader_iconbordercol'); remove_theme_mod('topheader_colortext'); remove_theme_mod('header_iconcol'); remove_theme_mod('header_bg_iconcol'); remove_theme_mod('menu_color'); remove_theme_mod('menuhover_color'); remove_theme_mod('submenuicon_color'); remove_theme_mod('submenutext_color'); remove_theme_mod('submenubg_color'); remove_theme_mod('submenuborder_color'); remove_theme_mod('menutoggle_color'); wp_send_json_success( array( 'success' => true, 'message' => "Reset Completed", ) ); } add_action( 'wp_ajax_architecturedesigner_header_reset_settings', 'architecturedesigner_header_reset_settings' ); // for slider function architecturedesigner_slider_reset_settings() { remove_theme_mod('slider_section_show_content'); remove_theme_mod('architecturedesigner_slider_image_opacity'); remove_theme_mod('slider1'); remove_theme_mod('slider2'); remove_theme_mod('slider3'); remove_theme_mod('slider4'); remove_theme_mod('slider5'); remove_theme_mod('slider6'); remove_theme_mod('slider_heading_color'); remove_theme_mod('slider_text_color'); remove_theme_mod('slider_btntxt_color'); remove_theme_mod('slider_btn_color'); remove_theme_mod('slider_btn_hrv_color'); remove_theme_mod('slider_btn_hrv_txt_color'); remove_theme_mod('slider_btn_hrv_bor_color'); remove_theme_mod('slider_overlay_color'); remove_theme_mod('slider_boxborder_color'); remove_theme_mod('architecturedesigner_slider_section_width'); wp_send_json_success( array( 'success' => true, 'message' => "Reset Completed", ) ); } add_action( 'wp_ajax_architecturedesigner_slider_reset_settings', 'architecturedesigner_slider_reset_settings' ); // for services function architecturedesigner_service_reset_settings() { remove_theme_mod('slider_service_show_content'); remove_theme_mod('service_section_heading'); remove_theme_mod('service_section_sub_heading'); remove_theme_mod('Service1'); remove_theme_mod('Service2'); remove_theme_mod('Service3'); remove_theme_mod('Service4'); remove_theme_mod('Service5'); remove_theme_mod('Service6'); remove_theme_mod('service_sechead_col'); remove_theme_mod('service_secsubhead_col'); remove_theme_mod('service_box_border'); remove_theme_mod('service_title_col'); remove_theme_mod('service_text_col'); remove_theme_mod('architecturedesigner_service_section_width'); remove_theme_mod('architecturedesigner_service_top_padding'); remove_theme_mod('architecturedesigner_service_bottom_padding'); remove_theme_mod('architecturedesigner_services_post_img_height'); wp_send_json_success( array( 'success' => true, 'message' => "Reset Completed", ) ); } add_action( 'wp_ajax_architecturedesigner_service_reset_settings', 'architecturedesigner_service_reset_settings' ); // for blog function architecturedesigner_blog_reset_settings() { remove_theme_mod('blog_show_content'); remove_theme_mod('blog_section_heading'); remove_theme_mod('blog_section_sub_heading'); remove_theme_mod('blog_sechead_col'); remove_theme_mod('blog_secsubhead_col'); remove_theme_mod('blog_title_col'); remove_theme_mod('blog_text_col'); remove_theme_mod('blog_btn_text_col'); remove_theme_mod('blog_btn_col'); remove_theme_mod('blog_btn_hrv_bor_col'); remove_theme_mod('blog_adminandcommicon_col'); remove_theme_mod('blog_adminandcommtxt_col'); remove_theme_mod('blog_date_col'); remove_theme_mod('blog_date_bg_col'); remove_theme_mod('blog_box_border_color'); remove_theme_mod('architecturedesigner_blog_section_width'); remove_theme_mod('architecturedesigner_blog_padding'); remove_theme_mod('architecturedesigner_blog_section_t_padding'); remove_theme_mod('architecturedesigner_blog_section_b_padding'); remove_theme_mod('architecturedesigner_blog_post_img_height'); wp_send_json_success( array( 'success' => true, 'message' => "Reset Completed", ) ); } add_action( 'wp_ajax_architecturedesigner_blog_reset_settings', 'architecturedesigner_blog_reset_settings' ); add_filter( 'nav_menu_link_attributes', 'architecturedesigner_dropdown_data_attribute', 20, 3 ); /** * Use namespaced data attribute for Bootstrap's dropdown toggles. * * @param array $atts HTML attributes applied to the item's `` element. * @param WP_Post $item The current menu item. * @param stdClass $args An object of wp_nav_menu() arguments. * @return array */ function architecturedesigner_dropdown_data_attribute( $atts, $item, $args ) { if ( is_a( $args->walker, 'WP_Bootstrap_Navwalker' ) ) { if ( array_key_exists( 'data-toggle', $atts ) ) { unset( $atts['data-toggle'] ); $atts['data-bs-toggle'] = 'dropdown'; } } return $atts; }