110, 'width' => 470, 'flex-width' => true, ) ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'azonbooster' ), 'secondary' => __( 'Secondary Menu', 'azonbooster' ), 'footer' => __( 'Footer Menu', 'azonbooster' ), ) ); /* * Switch default core markup for search form, comment form, comments, galleries, captions and widgets * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'widgets', ) ); /** * Add support for the Site Logo plugin and the site logo functionality in JetPack * https://github.com/automattic/site-logo * http://jetpack.me/ */ add_theme_support( 'site-logo', array( 'size' => 'full' ) ); // Declare support for title theme feature. add_theme_support( 'title-tag' ); // Declare support for selective refreshing of widgets. add_theme_support( 'customize-selective-refresh-widgets' ); } public function widgets_init() { $sidebar_args['sidebar'] = array( 'name' => __( 'Sidebar', 'azonbooster' ), 'id' => 'sidebar-1', 'description' => '' ); $sidebar_args['header'] = array( 'name' => __( 'Below Header', 'azonbooster' ), 'id' => 'header-1', 'description' => __( 'Widgets added to this region will appear beneath the header and above the main content.', 'azonbooster' ), ); $rows = intval( apply_filters( 'azonbooster_footer_widget_rows', 1 ) ); $regions = intval( apply_filters( 'azonbooster_footer_widget_columns', 4 ) ); for ( $row = 1; $row <= $rows; $row++ ) { for ( $region = 1; $region <= $regions; $region++ ) { $footer_n = $region + $regions * ( $row - 1 ); // Defines footer sidebar ID. $footer = sprintf( 'footer_%d', $footer_n ); if ( 1 == $rows ) { $footer_region_name = sprintf( __( 'Footer Column %1$d', 'azonbooster' ), $region ); $footer_region_description = sprintf( __( 'Widgets added here will appear in column %1$d of the footer.', 'azonbooster' ), $region ); } else { $footer_region_name = sprintf( __( 'Footer Row %1$d - Column %2$d', 'azonbooster' ), $row, $region ); $footer_region_description = sprintf( __( 'Widgets added here will appear in column %1$d of footer row %2$d.', 'azonbooster' ), $region, $row ); } $sidebar_args[ $footer ] = array( 'name' => $footer_region_name, 'id' => sprintf( 'footer-%d', $footer_n ), 'description' => $footer_region_description, ); } } foreach ( $sidebar_args as $sidebar => $args ) { $widget_tags = array( 'before_widget' => '
', 'before_title' => '', ); /** * Dynamically generated filter hooks. Allow changing widget wrapper and title tags. See the list below. * * 'azonbooster_header_widget_tags' * 'azonbooster_sidebar_widget_tags' * * 'azonbooster_footer_1_widget_tags' * 'azonbooster_footer_2_widget_tags' * 'azonbooster_footer_3_widget_tags' * 'azonbooster_footer_4_widget_tags' */ $filter_hook = sprintf( 'azonbooster_%s_widget_tags', $sidebar ); $widget_tags = apply_filters( $filter_hook, $widget_tags ); if ( is_array( $widget_tags ) ) { register_sidebar( $args + $widget_tags ); } } } public function scripts() { global $azonbooster_version; /** * Styles */ wp_enqueue_style( 'azonbooster-style', get_template_directory_uri() . '/style.css', '', $azonbooster_version ); wp_enqueue_style( 'azonbooster-icons', get_template_directory_uri() . '/assets/sass/base/icons.css', '', $azonbooster_version ); /** * Fonts */ $google_fonts = apply_filters( 'azonbooster_google_font_families', array( 'source-sans-pro' => 'Source+Sans+Pro:400,300,300italic,400italic,600,700,900', ) ); $query_args = array( 'family' => implode( '|', $google_fonts ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); wp_enqueue_style( 'azonbooster-fonts', $fonts_url, array(), null ); /** * Scripts */ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } /** * Enqueue child theme stylesheet. * A separate function is required as the child theme css needs to be enqueued _after_ the parent theme * primary css and the separate WooCommerce css. * * @since 1.0.0 */ public function child_scripts() { if ( is_child_theme() ) { wp_enqueue_style( 'azonbooster-child-style', get_stylesheet_uri(), '' ); } } /** * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link. * * @param array $args Configuration arguments. * @return array */ public function page_menu_args( $args ) { $args['show_home'] = true; return $args; } /** * Adds custom classes to the array of body classes. * * @param array $classes Classes for the body element. * @return array */ public function body_classes( $classes ) { // Adds a class of group-blog to blogs with more than 1 published author. if ( is_multi_author() ) { $classes[] = 'group-blog'; } /** * What is this?! * Take the blue pill, close this file and forget you saw the following code. * Or take the red pill, filter azonbooster_make_me_cute and see how deep the rabbit hole goes... */ $cute = apply_filters( 'azonbooster_make_me_cute', false ); if ( true === $cute ) { $classes[] = 'azonbooster-cute'; } // If our main sidebar doesn't contain widgets, adjust the layout to be full-width. if ( ! is_active_sidebar( 'sidebar-1' ) ) { $classes[] = 'azonbooster-full-width-content'; } // Add class when using homepage template + featured image if ( is_page_template( 'template-homepage.php' ) && has_post_thumbnail() ) { $classes[] = 'has-post-thumbnail'; } return $classes; } /** * Custom navigation markup template hooked into `navigation_markup_template` filter hook. */ public function navigation_markup_template() { $template = ''; return apply_filters( 'azonbooster_navigation_markup_template', $template ); } /** * Add styles for embeds */ public function print_embed_styles() { wp_enqueue_style( 'source-sans-pro', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,300italic,400italic,700,900' ); $accent_color = get_theme_mod( 'azonbooster_accent_color' ); $background_color = azonbooster_get_content_background_color(); ?> 1 ) { $structured_data['@graph'] = self::$structured_data; } else { $structured_data = $structured_data + self::$structured_data[0]; } echo ''; } /** * Sanitizes structured data. * * @param array $data * @return array */ public function sanitize_structured_data( $data ) { $sanitized = array(); foreach ( $data as $key => $value ) { if ( is_array( $value ) ) { $sanitized_value = $this->sanitize_structured_data( $value ); } else { $sanitized_value = sanitize_text_field( $value ); } $sanitized[ sanitize_text_field( $key ) ] = $sanitized_value; } return $sanitized; } } endif; return new AzonBooster();