theme_location || 'above_header_menu' === $args->theme_location || 'below_header_menu' === $args->theme_location ) { if ( isset( $item->classes ) && in_array( 'menu-item-has-children', $item->classes ) ) { $item_output = $this->menu_arrow_button_markup( $item_output, $item ); } } } else { if ( isset( $item->post_parent ) && 0 === $item->post_parent ) { $item_output = $this->menu_arrow_button_markup( $item_output, $item ); } } return $item_output; } /** * Get Menu Arrow Button Mark up * * @param string $item_output The menu item's starting HTML output. * @param WP_Post $item Menu item data object. * * @since 1.7.2 * @return string Menu item arrow button markup. */ function menu_arrow_button_markup( $item_output, $item ) { $item_output = apply_filters( 'astra_toggle_button_markup', $item_output, $item ); $item_output .= ''; return $item_output; } /** * Header Cart Icon Class * * @param array $classes Default argument array. * * @since 1.4.0 * @return array; */ function menu_toggle_classes( $classes ) { return ' ast-mobile-menu-buttons-' . astra_get_option( 'mobile-header-toggle-btn-style' ) . ' '; } /** * Mobile Header Markup * * @return void */ function mobile_header_markup() { $mobile_header_logo = astra_get_option( 'mobile-header-logo' ); $different_logo = astra_get_option( 'different-mobile-logo' ); if ( '' !== $mobile_header_logo && '1' == $different_logo ) { add_filter( 'astra_has_custom_logo', '__return_true' ); add_filter( 'get_custom_logo', array( $this, 'astra_mobile_header_custom_logo' ), 10, 2 ); } } /** * Replace logo with Mobile Header logo. * * @param sting $html Size name. * @param int $blog_id Icon. * @since 1.4.0 * @return string html markup of logo. */ function astra_mobile_header_custom_logo( $html, $blog_id ) { $mobile_header_logo = astra_get_option( 'mobile-header-logo' ); $custom_logo_id = attachment_url_to_postid( $mobile_header_logo ); $size = 'ast-mobile-header-logo-size'; if ( is_customize_preview() ) { $size = 'full'; } $logo = sprintf( '', esc_url( home_url( '/' ) ), wp_get_attachment_image( $custom_logo_id, $size, false, array( 'class' => 'ast-mobile-header-logo', ) ) ); return $html . $logo; } /** * Add Body Classes * * @param array $classes Body Class Array. * @return array */ function add_body_class( $classes ) { /** * Add class for header width */ $header_content_layout = astra_get_option( 'different-mobile-logo' ); if ( '0' == $header_content_layout ) { $classes[] = 'ast-mobile-inherit-site-logo'; } return $classes; } } /** * Initialize class object with 'get_instance()' method */ Astra_Mobile_Header::get_instance(); endif;