芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/sthwholesaler.com/wp-content/themes/porto/vc_templates/vc_custom_heading.php
getAttributes * @var $google_fonts_data - returned from $this->getAttributes * * Extra Params * @var $text_transform * @var $skin * @var $show_border * @var $border_skin * @var $border_color * @var $border_type * @var $border_size * * Shortcode class * @var $this WPBakeryShortCode_VC_Custom_heading */ $source = $link = $google_fonts = $font_container = $el_id = $el_class = $css = $font_container_data = $google_fonts_data = array(); $text = ''; $css_animation = ''; $animation_type = ''; $animation_delay = ''; $animation_duration = ''; // This is needed to extract $font_container_data and $google_fonts_data extract( $this->getAttributes( $atts ) ); $original_atts = $atts; $atts = vc_map_get_attributes( $this->getShortcode(), $atts ); extract( $atts ); /** * @var $css_class */ $element_class = empty( $this->settings['element_default_class'] ) ? '' : $this->settings['element_default_class']; extract( $this->getStyles( $element_class . ' ' . $el_class . $this->getCSSAnimation( $css_animation ), $css, $google_fonts_data, $font_container_data, $atts ) ); $skin = $border_skin = 'custom'; $show_border = $border_color = $border_type = $border_size = $enable_typewriter = $enable_marquee = ''; extract( shortcode_atts( array( 'skin' => 'custom', 'show_border' => false, 'border_skin' => 'custom', 'border_color' => '', 'border_type' => 'bottom-border', 'border_size' => '', 'enable_marquee' => false, 'marquee_duration' => '70000', 'enable_typewriter' => false, 'enable_typeword' => false, 'typewriter_animation' => 'fadeIn', 'typewriter_delay' => 0, 'typewriter_speed' => 50, 'typewriter_width' => 0, 'floating_img' => '', 'floating_offset' => '', // dynamic field 'enable_field_dynamic' => false, 'field_dynamic_source' => '', 'field_dynamic_content' => '', 'field_dynamic_content_meta_field' => '', 'field_dynamic_before' => '', 'field_dynamic_after' => '', 'field_dynamic_fallback' => '', // dynamic link 'enable_link_dynamic' => false, 'link_dynamic_source' => '', 'link_dynamic_content' => '', 'link_dynamic_content_meta_link' => '', 'link_dynamic_fallback' => '', 'date_format' => '', ), $original_atts ) ); //dynamic text if ( $enable_field_dynamic ) { if ( ( 'meta_field' == $field_dynamic_source ) && ! empty( $field_dynamic_content_meta_field ) ) { $text = Porto_Func_Dynamic_Tags_Content::get_instance()->dynamic_get_data( $field_dynamic_source, $field_dynamic_content_meta_field, 'field' ); } if ( ! empty( $field_dynamic_content ) ) { if ( ! empty( $date_format ) ) { $field_dynamic_content = array( 'field_dynamic_content' => $field_dynamic_content, 'date_format' => $date_format, ); } $text = Porto_Func_Dynamic_Tags_Content::get_instance()->dynamic_get_data( $field_dynamic_source, $field_dynamic_content, 'field' ); } if ( empty( $text ) && ! empty( $field_dynamic_fallback ) ) { $text = $field_dynamic_fallback; } $text = $field_dynamic_before . $text . $field_dynamic_after; } // dynamic link $dynamic_link = false; if ( $enable_link_dynamic ) { if ( ( 'meta_field' == $link_dynamic_source ) && ! empty( $link_dynamic_content_meta_link ) ) { $link = Porto_Func_Dynamic_Tags_Content::get_instance()->dynamic_get_data( $link_dynamic_source, $link_dynamic_content_meta_link, 'link' ); } if ( ! empty( $link_dynamic_content ) ) { $link = Porto_Func_Dynamic_Tags_Content::get_instance()->dynamic_get_data( $link_dynamic_source, $link_dynamic_content, 'link' ); } if ( empty( $link ) ) { $link = $link_dynamic_fallback; } $dynamic_link = true; } $settings = get_option( 'wpb_js_google_fonts_subsets' ); if ( is_array( $settings ) && ! empty( $settings ) ) { $subsets = '&subset=' . implode( ',', $settings ); } else { $subsets = ''; } if ( ( ! isset( $atts['use_theme_fonts'] ) || 'yes' !== $atts['use_theme_fonts'] ) && isset( $google_fonts_data['values']['font_family'] ) && $google_fonts_data['values']['font_family'] ) { wp_enqueue_style( 'vc_google_fonts_' . vc_build_safe_css_class( $google_fonts_data['values']['font_family'] ), '//fonts.googleapis.com/css?family=' . $google_fonts_data['values']['font_family'] . $subsets ); } $text_align_left = 'text-align: left'; $text_align_right = 'text-align: right'; if ( ! empty( $shortcode_class ) ) { $css_class .= ' ' . trim( $shortcode_class ); } // shortcode class if ( class_exists( 'WPBMap' ) ) { $sc = WPBMap::getShortCode( 'vc_custom_heading' ); if ( ! empty( $sc['params'] ) && class_exists( 'PortoShortcodesClass' ) && method_exists( 'PortoShortcodesClass', 'get_global_hashcode' ) ) { foreach ( $original_atts as $key => $item ) { if ( false !== strpos( $item, '"' ) ) { $original_atts[ $key ] = str_replace( '"', '``', $item ); } } $css_class .= ' wpb_custom_' . PortoShortcodesClass::get_global_hashcode( $original_atts, 'vc_custom_heading', $sc['params'] ); $internal_css = PortoShortcodesClass::generate_wpb_css( 'vc_custom_heading', $original_atts ); } } if ( in_array( $text_align_left, $styles ) ) { $css_class .= ' align-left'; $key = array_search( $text_align_left, $styles ); unset( $styles[ $key ] ); } elseif ( in_array( $text_align_right, $styles ) ) { $css_class .= ' align-right'; $key = array_search( $text_align_right, $styles ); unset( $styles[ $key ] ); } if ( isset( $font_weight ) && $font_weight ) { if ( empty( $styles ) ) { $styles = array(); } $styles[] = 'font-weight:' . ( (int) $font_weight ); } if ( isset( $letter_spacing ) && '' != $letter_spacing ) { if ( empty( $styles ) ) { $styles = array(); } $styles[] = 'letter-spacing:' . $letter_spacing; } $style = ''; if ( ! empty( $styles ) ) { $new_styles = array(); foreach ( $styles as $inline_style ) { $inline_style_arr = explode( ':', $inline_style ); if ( count( $inline_style_arr ) === 2 && '' != trim( $inline_style_arr[1] ) ) { $new_styles[] = $inline_style; } } if ( ! empty( $new_styles ) ) { $style = 'style="' . esc_attr( implode( ';', $new_styles ) ) . '"'; } } if ( $el_id ) { $style .= ' id="' . esc_attr( $el_id ) . '"'; } if ( $animation_type ) { $style .= ' data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( $animation_delay ) { $style .= ' data-appear-animation-delay="' . esc_attr( $animation_delay ) . '"'; } if ( $animation_duration && 1000 != $animation_duration ) { $style .= ' data-appear-animation-duration="' . esc_attr( $animation_duration ) . '"'; } if ( false !== strpos( $animation_type, 'revealDir' ) ) { $style .= ' data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } elseif ( ! empty( $enable_typewriter ) ) { $typewriter_options = array( 'startDelay' => 0, 'minWindowWidth' => 0, ); if ( ! empty( $typewriter_delay ) ) { $typewriter_options['startDelay'] = (int) $typewriter_delay; } if ( ! empty( $typewriter_speed ) && 50 != (int) $typewriter_speed ) { $typewriter_options['animationSpeed'] = (int) $typewriter_speed; } if ( ! empty( $typewriter_width ) ) { $typewriter_options['minWindowWidth'] = (int) $typewriter_width; } if ( ! empty( $typewriter_animation ) ) { $typewriter_options['animationName'] = $typewriter_animation; } if ( ! empty( $enable_typeword ) ) { $typewriter_options['contentType'] = 'word'; $style .= ' data-plugin-animated-words'; } else { $style .= ' data-plugin-animated-letters'; } $style .= ' data-plugin-options="' . esc_attr( json_encode( $typewriter_options ) ) . '"'; } elseif ( ! empty( $atts ) && function_exists( 'porto_shortcode_add_floating_options' ) ) { $floating_option = porto_shortcode_add_floating_options( $atts ); if ( ! empty( $floating_option ) ) { $style .= $floating_option; } } if ( ! empty( $enable_marquee ) ) { wp_enqueue_script( 'porto-marquee' ); $marquee_duration = ! empty( $marquee_duration ) ? $marquee_duration : '70000'; $style .= ' data-duration="' . floatval( $marquee_duration ) . '" data-gap="10" data-duplicated="true" data-startVisible="true" data-clone-element="5"'; } if ( 'post_title' === $source ) { $text = get_the_title( get_the_ID() ); } if ( ! empty( $link ) ) { if ( $dynamic_link ) { $link = array( 'url' => $link, 'target' => '', 'title' => '', ); } elseif ( function_exists( 'vc_build_link' ) ) { $link = vc_build_link( $link ); } $text = '
' . wp_specialchars_decode( $text ) . '
'; } $output = ''; if ( ! empty( $floating_img ) ) { $image_info = porto_get_attachment( $floating_img, 'full' ); $floating_image = '
'; wp_enqueue_script( 'porto-gsap' ); $css_class .= ' thumb-info-floating-element-wrapper'; $imgfloating = array( 'offset' => 0 ); if ( ! empty( $floating_offset ) ) { $imgfloating['offset'] = (int) $floating_offset; } $floating_attr = ' data-plugin-tfloating="' . esc_attr( json_encode( $imgfloating ) ) . '"'; } if ( apply_filters( 'vc_custom_heading_template_use_wrapper', false ) || $show_border ) { if ( $show_border ) { $wrap_class = 'heading' . rand(); $css_class .= ' heading heading-border'; if ( 'custom' !== $border_skin ) { $css_class .= ' heading-' . $border_skin; } if ( 'middle-border-reverse' === $border_type || 'middle-border-center' === $border_type ) { $css_class .= ' heading-middle-border'; } if ( $border_type ) { $css_class .= ' heading-' . $border_type; } if ( $border_size && 'custom' != $border_size ) { $css_class .= ' heading-border-' . $border_size; } if ( $border_color ) { $css_class .= ' ' . $wrap_class; ob_start(); ?> ' . wp_strip_all_tags( $internal_css ) . ''; } } $output .= '
'; $heading_class = 'heading-tag'; if ( 'custom' !== $skin ) { $heading_class .= ' heading-' . $skin; } if ( $text_transform ) { $heading_class .= ' ' . $text_transform; } if ( ! empty( $enable_marquee ) ) { $heading_class .= ' marquee'; } $output .= '<' . esc_html( $font_container_data['values']['tag'] ) . ' ' . trim( $style ) . ( $heading_class ? ' class="' . esc_attr( $heading_class ) . '"' : '' ) . '>'; $output .= force_balance_tags( wp_specialchars_decode( $text ) ); $output .= '' . $font_container_data['values']['tag'] . '>'; $output .= ! empty( $floating_image ) ? $floating_image : ''; $output .= '
'; } else { if ( $text_transform ) { $css_class .= ' ' . $text_transform; } if ( 'custom' !== $skin ) { $css_class .= ' heading-' . $skin; } if ( ! empty( $enable_marquee ) ) { $css_class .= ' marquee'; } $output .= '<' . $font_container_data['values']['tag'] . ' ' . $style . ' class="' . esc_attr( $css_class ) . '" ' . ( ! empty( $floating_attr ) ? esc_attr( $floating_attr ) : '' ) . '>'; $output .= force_balance_tags( wp_specialchars_decode( $text ) ); $output .= ! empty( $floating_image ) ? $floating_image : ''; $output .= '' . esc_html( $font_container_data['values']['tag'] ) . '>'; } echo porto_filter_output( $output );