BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
templates
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_ultimate_heading.php
<?php use Elementor\Plugin; if ( ! function_exists( 'porto_ultimate_heading_spacer' ) ) { function porto_ultimate_heading_spacer( $wrapper_class, $wrapper_style, $icon_inline ) { $spacer = '<div class="porto-u-heading-spacer ' . $wrapper_class . '" style="' . $wrapper_style . '">' . $icon_inline . '</div>'; return $spacer; } } $wrapper_style = $main_heading_style_inline = $sub_heading_style_inline = $line_style_inline = $icon_inline = $output = $el_class = $animation_type = ''; extract( shortcode_atts( array( 'main_heading' => '', 'main_heading_use_theme_fonts' => '', 'main_heading_font' => '', 'main_heading_font_family' => '', 'main_heading_font_size' => '', 'main_heading_font_weight' => '', 'main_heading_text_transform' => '', 'main_heading_line_height' => '', 'main_heading_letter_spacing' => '', 'main_heading_color' => '', 'main_heading_margin_bottom' => '', 'sub_heading_font' => '', 'sub_heading_font_family' => '', 'sub_heading_font_size' => '', 'sub_heading_font_weight' => '', 'sub_heading_line_height' => '', 'sub_heading_letter_spacing' => '', 'sub_heading_color' => '', 'sub_heading_margin_bottom' => '', 'spacer' => 'no_spacer', 'spacer_position' => 'top', 'line_style' => 'solid', 'line_width' => '', 'line_height' => '1', 'line_color' => '#ccc', 'alignment' => 'center', 'alignment_tablet' => 'inherit', 'alignment_mobile' => 'inherit', 'spacer_margin_bottom' => '', 'enable_marquee' => false, 'marquee_duration' => '70000', 'enable_typewriter' => false, 'enable_typeword' => false, 'typewriter_animation' => 'fadeIn', 'typewriter_delay' => 0, 'typewriter_speed' => 50, 'typewriter_width' => 0, 'heading_tag' => '', 'animation_type' => '', 'animation_duration' => '', 'animation_delay' => '', 'animation_reveal_clr' => '', 'el_class' => '', 'floating_img' => '', 'floating_offset' => '', 'className' => '', 'page_builder' => '', 'enable_highlight' => '', 'hlight_gradient' => '', 'hlight_top_bg' => '', 'hlight_top_loc' => '0', 'hlight_bottom_bg' => '', 'hlight_bottom_loc' => '100', 'hlight_angle' => '0', 'enable_svghighlight' => '', 'before_heading' => '', 'after_heading' => '', 'highlight_svg' => 'scribble', 'css_porto_ulheading' => '', 'enable_field_dynamic' => false, 'field_dynamic_source' => '', 'field_dynamic_content' => '', 'field_dynamic_content_meta_field' => '', 'field_dynamic_before' => '', 'field_dynamic_after' => '', 'field_dynamic_fallback' => '', 'field_date_format' => '', 'date_format' => '', ), $atts ) ); if ( $enable_field_dynamic ) { if ( ( 'meta_field' == $field_dynamic_source ) && ! empty( $field_dynamic_content_meta_field ) ) { $main_heading = 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 ( '' == $field_date_format && '' !== $date_format ) { // Backward Compatibility $field_date_format = $date_format; } if ( ! empty( $field_date_format ) ) { $field_dynamic_content = array( 'field_dynamic_content' => $field_dynamic_content, 'date_format' => $field_date_format, ); } $main_heading = Porto_Func_Dynamic_Tags_Content::get_instance()->dynamic_get_data( $field_dynamic_source, $field_dynamic_content, 'field' ); } if ( empty( $main_heading ) ) { $main_heading = $field_dynamic_fallback; } $main_heading = $field_dynamic_before . $main_heading . $field_dynamic_after; } $main_heading = str_replace( '``', '"', $main_heading ); $wrapper_class = $spacer; $custom_style = ''; $align = array(); global $porto_settings; $breakpoints = array( 'xl' => '', 'lg' => isset( $porto_settings['container-width'] ) && isset( $porto_settings['grid-gutter-width'] ) ? ( $porto_settings['container-width'] > 1360 ? ( (int) $porto_settings['container-width'] + 2 * (int) $porto_settings['grid-gutter-width'] - 1 ) . 'px' : ( (int) $porto_settings['container-width'] + (int) $porto_settings['grid-gutter-width'] - 1 ) . 'px' ) : '1219px', 'md' => '991px', 'sm' => '767px', 'xs' => '575px', ); // Change breakpoints by elementor site setting if ( 'elementor' == $page_builder ) { $el_breakpoints = Plugin::$instance->breakpoints->get_active_breakpoints(); foreach ( $el_breakpoints as $breakpoint_key => $breakpoint_value ) { $break_label = $breakpoint_value->get_label(); if ( 'Tablet' == $break_label ) { $breakpoints['md'] = $breakpoint_value->get_value() . 'px'; } elseif ( 'Mobile' == $break_label ) { $breakpoints['sm'] = $breakpoint_value->get_value() . 'px'; } } } if ( 0 === strpos( $alignment, '{' ) ) { // WPBakery $align = json_decode( str_replace( '``', '"', $alignment ), true ); } elseif ( ! empty( $alignment ) ) { // Elementor $align['xl'] = $alignment; if ( 'inherit' != $alignment_tablet ) { $align['md'] = $alignment_tablet; } if ( 'inherit' != $alignment_mobile ) { $align['sm'] = $alignment_mobile; } } if ( $className ) { if ( $el_class ) { $el_class .= ' ' . $className; } else { $el_class = $className; } } if ( ! empty( $shortcode_class ) ) { if ( empty( $el_class ) ) { $el_class = $shortcode_class; } else { $el_class .= ' ' . $shortcode_class; } } $custom_class = 'porto-u-' . hash( 'md5', json_encode( $align ) ); $el_class .= ' ' . $custom_class; $type_plugin = ''; // text align foreach ( $breakpoints as $resp => $value ) { if ( ! empty( $align[ $resp ] ) ) { if ( 'xl' != $resp ) { $custom_style .= ' @media(max-width:' . $value . '){'; } $custom_style .= ' .' . esc_attr( $custom_class ) . '.porto-u-heading{'; if ( 'xl' != $resp ) { if ( 'inherit' != $align[ $resp ] ) { $custom_style .= 'text-align:' . $align[ $resp ]; } } else { $custom_style .= 'text-align:' . $align[ $resp ]; } $custom_style .= '}'; if ( 'xl' != $resp ) { $custom_style .= '}'; } } } if ( ! empty( $enable_typewriter ) ) { wp_enqueue_script( 'porto-animated-letters' ); $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'; $type_plugin .= ' data-plugin-animated-words'; } else { $type_plugin .= ' data-plugin-animated-letters'; } $type_plugin .= ' data-plugin-options="' . esc_attr( json_encode( $typewriter_options ) ) . '"'; } if ( ! empty( $enable_marquee ) ) { wp_enqueue_script( 'porto-marquee' ); $marquee_duration = ! empty( $marquee_duration ) ? $marquee_duration : '70000'; $type_plugin .= ' class="marquee" data-duration="' . floatval( $marquee_duration ) . '" data-gap="10" data-duplicated="true" data-startVisible="true" data-clone-element="5"'; } if ( is_array( $line_height ) && isset( $line_height['size'] ) ) { $line_height = $line_height['size']; } if ( empty( $content ) && isset( $atts['content'] ) && ! empty( $atts['content'] ) ) { $content = $atts['content']; } if ( '' == $heading_tag ) { $heading_tag = 'h2'; } if ( empty( $atts['main_heading_porto_typography'] ) ) { if ( ( ! isset( $atts['main_heading_use_theme_fonts'] ) || 'yes' !== $atts['main_heading_use_theme_fonts'] ) && $main_heading_font ) { $google_fonts_data = porto_sc_parse_google_font( $main_heading_font ); $styles = porto_sc_google_font_styles( $google_fonts_data ); $main_heading_style_inline .= esc_attr( $styles ); } elseif ( $main_heading_font_family ) { $main_heading_style_inline .= 'font-family:' . urldecode( esc_attr( $main_heading_font_family ) ) . ';'; } if ( $main_heading_font_weight ) { $main_heading_style_inline .= 'font-weight:' . esc_attr( $main_heading_font_weight ) . ';'; } } if ( $main_heading_color ) { $main_heading_style_inline .= 'color:' . esc_attr( $main_heading_color ) . ';'; } if ( $main_heading_margin_bottom || '0' == $main_heading_margin_bottom ) { $unit = trim( preg_replace( '/[0-9.-]/', '', $main_heading_margin_bottom ) ); if ( ! $unit ) { $main_heading_margin_bottom .= 'px'; } $main_heading_style_inline .= 'margin-bottom: ' . esc_attr( $main_heading_margin_bottom ) . ';'; } if ( empty( $atts['sub_heading_porto_typography'] ) ) { if ( ( ! isset( $atts['sub_heading_use_theme_fonts'] ) || 'yes' !== $atts['sub_heading_use_theme_fonts'] ) && $sub_heading_font ) { $google_fonts_data1 = porto_sc_parse_google_font( $sub_heading_font ); $styles = porto_sc_google_font_styles( $google_fonts_data1 ); $sub_heading_style_inline .= esc_attr( $styles ); } elseif ( $sub_heading_font_family ) { $sub_heading_style_inline .= 'font-family: ' . urldecode( esc_attr( $sub_heading_font_family ) ) . ';'; } } // enqueue google fonts $google_fonts_arr = array(); if ( isset( $google_fonts_data ) && $google_fonts_data ) { $google_fonts_arr[] = $google_fonts_data; } if ( isset( $google_fonts_data1 ) && $google_fonts_data1 ) { $google_fonts_arr[] = $google_fonts_data1; } if ( ! empty( $google_fonts_arr ) ) { porto_sc_enqueue_google_fonts( $google_fonts_arr ); } if ( empty( $atts['sub_heading_porto_typography'] ) ) { if ( $sub_heading_font_weight ) { $sub_heading_style_inline .= 'font-weight:' . esc_attr( $sub_heading_font_weight ) . ';'; } } if ( $sub_heading_color ) { $sub_heading_style_inline .= 'color: ' . esc_attr( $sub_heading_color ) . ';'; } if ( $sub_heading_margin_bottom || '0' == $sub_heading_margin_bottom ) { $unit = trim( preg_replace( '/[0-9.-]/', '', $sub_heading_margin_bottom ) ); if ( ! $unit ) { $sub_heading_margin_bottom .= 'px'; } $sub_heading_style_inline .= 'margin-bottom:' . esc_attr( $sub_heading_margin_bottom ) . ';'; } if ( 'no_spacer' != $spacer && $spacer_margin_bottom ) { $unit = trim( preg_replace( '/[0-9.]/', '', $spacer_margin_bottom ) ); if ( ! $unit ) { $spacer_margin_bottom .= 'px'; } $wrapper_style .= 'margin-bottom: ' . esc_attr( $spacer_margin_bottom ) . ';'; } if ( 'line_only' == $spacer ) { $wrap_width = $line_width; $line_style_inline = 'border-style:' . esc_attr( $line_style ) . ';'; $line_style_inline .= 'border-bottom-width:' . esc_attr( $line_height ) . 'px;'; if ( empty( $page_builder ) ) { $line_style_inline .= 'border-color:' . esc_attr( $line_color ) . ';'; } if ( ! empty( $wrap_width ) ) { $line_style_inline .= 'width:' . esc_attr( $wrap_width ) . ( 'auto' == $wrap_width ? ';' : 'px;' ); foreach ( $breakpoints as $resp => $value ) { if ( ! empty( $align[ $resp ] ) ) { if ( 'xl' != $resp ) { $custom_style .= ' @media(max-width:' . $value . '){'; } $custom_style .= ' .' . esc_attr( trim( $custom_class ) ) . ' .porto-u-headings-line{'; if ( 'center' == $align[ $resp ] ) { $custom_style .= 'float: unset;'; } elseif ( 'inherit' != $align[ $resp ] ) { $custom_style .= 'float: ' . $align[ $resp ] . ';'; } $custom_style .= '}'; if ( 'xl' != $resp ) { $custom_style .= '}'; } } } } $wrapper_style .= 'height:' . esc_attr( $line_height ) . 'px;'; $line = '<span class="porto-u-headings-line" style="' . esc_attr( $line_style_inline ) . '"></span>'; $icon_inline = $line; } elseif ( 'image_only' == $spacer ) { if ( ! empty( $spacer_img_width ) ) { $siwidth = array( $spacer_img_width, $spacer_img_width ); } else { $siwidth = 'full'; } $spacer_inline = ''; if ( $spacer_img ) { $attachment = wp_get_attachment_image_src( $spacer_img, $siwidth ); if ( isset( $attachment ) ) { $icon_inline = $attachment[0]; } } $alt = ''; if ( '' !== $spacer_img_width ) { $spacer_inline = 'width:' . $spacer_img_width . 'px'; } $icon_inline = '<img src="' . esc_url( $icon_inline ) . '" class="ultimate-headings-icon-image" alt="' . esc_attr( $alt ) . '" style="' . esc_attr( $spacer_inline ) . '"/>'; } if ( empty( $atts['main_heading_porto_typography'] ) ) { if ( $main_heading_font_size ) { $unit = trim( preg_replace( '/[0-9.]/', '', $main_heading_font_size ) ); if ( ! $unit ) { $main_heading_font_size .= 'px'; } $main_heading_style_inline .= 'font-size:' . $main_heading_font_size . ';'; } if ( $main_heading_text_transform ) { $main_heading_style_inline .= 'text-transform:' . $main_heading_text_transform . ';'; } if ( $main_heading_line_height ) { $unit = trim( preg_replace( '/[0-9.]/', '', $main_heading_line_height ) ); if ( ! $unit && (int) $main_heading_line_height > 3 ) { $main_heading_line_height .= 'px'; } $main_heading_style_inline .= 'line-height:' . $main_heading_line_height . ';'; } if ( $main_heading_letter_spacing ) { $main_heading_style_inline .= 'letter-spacing:' . $main_heading_letter_spacing . ';'; } } if ( empty( $atts['sub_heading_porto_typography'] ) ) { if ( $sub_heading_font_size ) { $unit = trim( preg_replace( '/[0-9.]/', '', $sub_heading_font_size ) ); if ( ! $unit ) { $sub_heading_font_size .= 'px'; } $sub_heading_style_inline .= 'font-size:' . $sub_heading_font_size . ';'; } if ( $sub_heading_line_height ) { $unit = trim( preg_replace( '/[0-9.]/', '', $sub_heading_line_height ) ); if ( ! $unit && (int) $sub_heading_line_height > 3 ) { $sub_heading_line_height .= 'px'; } $sub_heading_style_inline .= 'line-height:' . $sub_heading_line_height . ';'; } if ( $sub_heading_letter_spacing ) { $sub_heading_style_inline .= 'letter-spacing:' . $sub_heading_letter_spacing . ';'; } } $wrapper_attributes = array(); if ( $animation_type ) { $wrapper_attributes[] = 'data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( $animation_delay ) { $wrapper_attributes[] = 'data-appear-animation-delay="' . esc_attr( $animation_delay ) . '"'; } if ( $animation_duration && 1000 != $animation_duration ) { $wrapper_attributes[] = 'data-appear-animation-duration="' . esc_attr( $animation_duration ) . '"'; } if ( false !== strpos( $animation_type, 'revealDir' ) ) { $wrapper_attributes[] = 'data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } // Floating Image $floating_image = $image_info = array(); if ( ( is_array( $floating_img ) && ! empty( $floating_img['id'] ) ) ) { // Elementor $image_info = porto_get_attachment( $floating_img['id'] ); $floating_image['id'] = $floating_img['id']; } elseif ( ( is_array( $floating_img ) && ! empty( $floating_img['url'] ) ) ) { // Elementor External $image_info = array(); $image_info['src'] = $floating_img['url']; if ( ! empty( $floating_img['alt'] ) ) { $image_info['alt'] = $floating_img['alt']; } } elseif ( '' != $floating_img && is_string( $floating_img ) ) { // WPBakery $image_info = porto_get_attachment( $floating_img ); $floating_image['id'] = $floating_img; } if ( ! empty( $image_info ) ) { $floating_image = array_merge( $floating_image, array( 'url' => $image_info['src'], // 'alt' => $image_info['alt'], // 'width' => $image_info['width'], // 'height' => $image_info['height'], ) ); if ( ! empty( $image_info['alt'] ) ) { $floating_image['alt'] = $image_info['alt']; } if ( ! empty( $image_info['width'] ) ) { $floating_image['width'] = $image_info['width']; } if ( ! empty( $image_info['height'] ) ) { $floating_image['height'] = $image_info['height']; } wp_enqueue_script( 'porto-gsap' ); wp_enqueue_script( 'porto-hover-image' ); $el_class .= ' thumb-info-floating-element-wrapper'; $imgfloating = array( 'offset' => 0 ); if ( ! empty( $floating_offset ) ) { $imgfloating['offset'] = (int) $floating_offset; } $wrapper_attributes[] = ' data-plugin-tfloating="' . esc_attr( json_encode( $imgfloating ) ) . '"'; } if ( defined( 'VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG' ) && isset( $css_porto_ulheading ) ) { $el_class .= ' ' . apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, vc_shortcode_custom_css_class( $css_porto_ulheading, ' ' ), 'porto_ultimate_heading', $atts ); } $output = '<div class="porto-u-heading' . ( $el_class ? ' ' . esc_attr( $el_class ) : '' ) . '"' . ( $wrapper_attributes ? ' ' . implode( ' ', $wrapper_attributes ) : '' ) . porto_shortcode_add_floating_options( $atts ) . '>'; if ( 'top' == $spacer_position && 'no_spacer' != $spacer ) { $output .= porto_ultimate_heading_spacer( $wrapper_class, $wrapper_style, $icon_inline ); } if ( $main_heading ) { if ( ! isset( $main_heading_attrs_escaped ) ) { $main_heading_attrs_escaped = ''; } if ( $main_heading_style_inline ) { $main_heading_attrs_escaped .= ' style="' . esc_attr( $main_heading_style_inline ) . '"'; } $main_heading_class = $main_heading_hlight = ''; if ( 'yes' == $enable_highlight ) { if ( '' == $enable_svghighlight ) { $main_heading_class = ' heading-highlight'; $main_heading_hlight = ' data-appear-animation="highlightProgress"'; if ( empty( $page_builder ) && 'yes' == $hlight_gradient ) { $output .= '<style>.' . trim( $shortcode_class ) . ' .heading-highlight mark:before{background:linear-gradient(' . $hlight_angle . 'deg , ' . $hlight_top_bg . ' ' . $hlight_top_loc . '%, ' . $hlight_bottom_bg . ' ' . $hlight_bottom_loc . '%);}' . '</style>'; } } elseif ( 'yes' == $enable_svghighlight ) { $svg_shape = ''; if ( 'scribble' == $highlight_svg ) { $svg_shape = '<svg class="highlight-scribble" viewBox="0 0 760 60" preserveAspectRatio="none"><path d="M19,49C75.19,30.63,152,21,317.26,17.27c55.43-.41,198.33-2.08,407.85,12.53"></path></svg>'; } elseif ( 'circle' == $highlight_svg ) { $svg_shape = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none"><path d="M284.72,15.61C276.85,14.43,2-2.85,2,80.46c0,34.09,45.22,58.86,196.31,62.81C719.59,154.18,467-74.85,109,29.15"></path></svg>'; } elseif ( 'underline_zigzag' == $highlight_svg ) { $svg_shape = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none"><path d="M9.3,127.3c49.3-3,150.7-7.6,199.7-7.4c121.9,0.4,189.9,0.4,282.3,7.2C380.1,129.6,181.2,130.6,70,139 c82.6-2.9,254.2-1,335.9,1.3c-56,1.4-137.2-0.3-197.1,9"></path></svg>'; } elseif ( 'curly' == $highlight_svg ) { $svg_shape = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 30" preserveAspectRatio="none"><path d="M1.15,18C64.07,44.13,108.42,1.4,169.63,3.1,182.11,3.76,191.39,6.58,201,10c71.41,33.39,112-8.7,188.65-7,35.22,1.74,69.81,22.6,103,17"></path></svg>'; } elseif ( 'cross' == $highlight_svg ) { $svg_shape = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none"><path d="M1.61,3.49C115.8,11.6,253.39,36.14,398.43,97.15c31.14,13.1,60.53,27,88.18,41.34"></path><path d="M486.61,3.49C372.42,11.6,234.84,36.14,89.79,97.15c-31.14,13.1-60.52,27-88.18,41.34"></path></svg>'; } elseif ( 'underline' == $highlight_svg ) { $svg_shape = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 100" preserveAspectRatio="none"><path d="M4,74.8h499.3"></path></svg>'; } $main_heading = '<span class="heading-highlight-before">' . esc_html( $before_heading ) . '</span><span class="heading-highlight-svg">' . wp_kses_post( $main_heading ) . '<span class="svg-highlight ' . esc_attr( $highlight_svg ) . '">' . $svg_shape . '</span></span><span class="heading-highlight-after">' . esc_html( $after_heading ) . '</span>'; } } $output .= '<div class="porto-u-main-heading' . $main_heading_class . '"' . $main_heading_hlight . '><' . esc_html( $heading_tag ) . ' ' . trim( $type_plugin ) . ' ' . $main_heading_attrs_escaped . '>' . porto_filter_output( $main_heading ) . '</' . esc_html( $heading_tag ) . '></div>'; } if ( 'middle' == $spacer_position && 'no_spacer' != $spacer ) { $output .= porto_ultimate_heading_spacer( $wrapper_class, $wrapper_style, $icon_inline ); } if ( isset( $content ) && $content ) { $output .= '<div class="porto-u-sub-heading" style="' . esc_attr( $sub_heading_style_inline ) . '">' . do_shortcode( $content ) . '</div>'; } if ( 'bottom' == $spacer_position && 'no_spacer' != $spacer ) { $output .= porto_ultimate_heading_spacer( $wrapper_class, $wrapper_style, $icon_inline ); } if ( ! empty( $floating_image ) && ! empty( $image_info ) ) { if ( ! empty( $floating_image['height'] ) && ! empty( $floating_image['width'] ) ) { $output .= '<span class="thumb-info-floating-element d-none"><img src="' . esc_attr( $floating_image['url'] ) . '" alt="' . ( ! empty( $floating_image['alt'] ) ? esc_attr( $floating_image['alt'] ) : '' ) . '" width="' . esc_attr( $floating_image['width'] ) . '" height="' . esc_attr( $floating_image['height'] ) . '"></span>'; } else { $output .= '<span class="thumb-info-floating-element d-none"><img src="' . esc_attr( $floating_image['url'] ) . '"' . ( ! empty( $floating_image['alt'] ) ? ' alt="' . esc_attr( $floating_image['alt'] ) . '"': '' ) . '></span>'; } } if ( ! empty( $custom_style ) ) { $output .= '<style>' . wp_strip_all_tags( $custom_style ) . '</style>'; } $output .= '</div>'; echo porto_filter_output( $output );
Save
Cancel