get_kit_frontend_option('viewport_tablet'); $attributes['data-mobile-nav-breakpoint'] = !empty( $media_mobile_nav ) ? $media_mobile_nav : '1200'; $local_scroll_speed = liquid_helper()->get_kit_option( 'liquid_pagescroll_speed' ); $local_scroll_offset = liquid_helper()->get_kit_option( 'liquid_pagescroll_offset' ); if( isset( $local_scroll_speed['size'] ) ) { $attributes['data-localscroll-speed'] = (int)$local_scroll_speed['size'] * 1000; } if( isset( $local_scroll_offset['size'] ) ) { $attributes['data-localscroll-offset'] = $local_scroll_offset['size']; } if ( is_singular( 'post' ) || is_home() || is_archive() ) { $attributes['itemtype'] = 'http://schema.org/Blog'; } if ( is_search() ) { $attributes['itemtype'] = 'http://schema.org/SearchResultsPage'; } return $attributes; } /** * [liquid_attributes_menu description] * @method liquid_attributes_menu * @return [type] [description] */ add_filter( 'liquid_attr_menu', 'liquid_attributes_menu' ); function liquid_attributes_menu( $attributes ) { if ( $attributes['location'] ) { $menu_name = liquid_helper()->get_menu_location_name( $attributes['location'] ); if ( $menu_name ) { // Translators: The %s is the menu name. This is used for the 'aria-label' attribute. $attributes['aria-label'] = esc_attr( sprintf( esc_html_x( '%s', 'nav menu aria label', 'aihub' ), $menu_name ) ); } } unset( $attributes['location'] ); $attributes['itemscope'] = 'itemscope'; $attributes['itemtype'] = 'http://schema.org/SiteNavigationElement'; return $attributes; } /** * [liquid_attributes_content description] * @method liquid_attributes_content * @param [type] $attributes [description] * @return [type] [description] */ add_filter( 'liquid_attr_content', 'liquid_attributes_content' ); function liquid_attributes_content( $attributes ) { $attributes['id'] = 'lqd-page-content-wrap'; $attributes['class'] = 'z-2'; if ( ( get_post_type() === 'post' || get_post_type()=== 'page' || get_post_type() === 'liquid-portfolio' ) ){ $enabled_liquid_bg = liquid_helper()->get_page_option( 'page_enable_liquid_bg' ); $liquid_bg_header_interact = liquid_helper()->get_page_option( 'page_liquid_bg_interact' ); //Stack enable $enabled_stack = liquid_helper()->get_page_option( 'page_enable_stack' ); $enabled_stack_mobile = liquid_helper()->get_page_option( 'page_enable_stack_mobile' ); $stack_nav = liquid_helper()->get_page_option( 'page_stack_nav' ); $stack_prevnext = liquid_helper()->get_page_option( 'page_stack_nav_prevnextbuttons' ); $stack_numbers = liquid_helper()->get_page_option( 'page_stack_numbers' ); $stack_effect = liquid_helper()->get_page_option( 'page_stack_effect' ); $stack_opts = array(); if( 'on' === $enabled_stack ) { $attributes['data-liquid-stack'] = true; $stack_opts['navigation'] = ( 'on' == $stack_nav ) ? true : false; $stack_opts['prevNextButtons'] = ( 'on' == $stack_prevnext ) ? true : false; $stack_opts['pageNumber'] = ( 'on' == $stack_numbers ) ? true : false; $stack_opts['prevNextLabels'] = array( 'prev' => esc_html__( 'Previous', 'aihub' ), 'next' => esc_html__( 'Next', 'aihub' ) ); $stack_opts['effect'] = !empty( $stack_effect ) ? $stack_effect : 'fadeScale'; $stack_opts['disableOnMobile'] = ( 'on' == $enabled_stack_mobile ) ? false : true; $attributes['data-stack-options'] = wp_json_encode( $stack_opts ); } if( 'on' === $enabled_liquid_bg ) { $attributes['data-liquid-bg'] = true; $liquid_bg_options['interactWithHeader'] = ( 'on' == $liquid_bg_header_interact ) ? true : false; $attributes['data-liquid-bg-options'] = wp_json_encode( $liquid_bg_options ); } if ( ! is_singular( 'post' ) && ! is_home() && ! is_archive() ) {} } return $attributes; } /** * [liquid_attributes_content description] * @method liquid_attributes_content * @param [type] $attributes [description] * @return [type] [description] */ add_filter( 'liquid_attr_contents_wrap', 'liquid_attributes_contents_wrap' ); function liquid_attributes_contents_wrap( $attributes ) { $attributes['id'] = 'lqd-page-content'; $attributes['class'] = ''; return $attributes; }