BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
themes
/
porto
/
inc
/
functions
📤 Upload
📝 New File
📁 New Folder
Close
Editing: general.php
<?php if ( ! function_exists( 'porto_add_url_parameters' ) ) : function porto_add_url_parameters( $url, $name, $value ) { $url_data = parse_url( str_replace( '#038;', '&', $url ) ); if ( ! isset( $url_data['query'] ) ) { $url_data['query'] = ''; } $params = array(); parse_str( $url_data['query'], $params ); $params[ $name ] = $value; $url_data['query'] = http_build_query( $params ); return porto_build_url( $url_data ); } endif; if ( ! function_exists( 'porto_remove_url_parameters' ) ) : function porto_remove_url_parameters( $url, $name ) { $url_data = parse_url( str_replace( '#038;', '&', $url ) ); if ( ! isset( $url_data['query'] ) ) { $url_data['query'] = ''; } $params = array(); parse_str( $url_data['query'], $params ); $params[ $name ] = ''; $url_data['query'] = http_build_query( $params ); return porto_build_url( $url_data ); } endif; if ( ! function_exists( 'porto_build_url' ) ) : function porto_build_url( $url_data ) { $url = ''; if ( isset( $url_data['host'] ) ) { $url .= $url_data['scheme'] . '://'; if ( isset( $url_data['user'] ) ) { $url .= $url_data['user']; if ( isset( $url_data['pass'] ) ) { $url .= ':' . $url_data['pass']; } $url .= '@'; } $url .= $url_data['host']; if ( isset( $url_data['port'] ) ) { $url .= ':' . $url_data['port']; } } if ( isset( $url_data['path'] ) ) { $url .= $url_data['path']; } if ( isset( $url_data['query'] ) ) { $url .= '?' . $url_data['query']; } if ( isset( $url_data['fragment'] ) ) { $url .= '#' . $url_data['fragment']; } return str_replace( '#038;', '&', $url ); } endif; function porto_get_blank_image() { return 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='; } if ( ! function_exists( 'array2json' ) ) : function array2json( $arr ) { if ( function_exists( 'json_encode' ) ) { return json_encode( $arr ); //Lastest versions of PHP already has this functionality. } $parts = array(); $is_list = false; //Find out if the given array is a numerical array $keys = array_keys( $arr ); $max_length = count( $arr ) - 1; if ( ( 0 == $keys[0] ) and ( $keys[ $max_length ] == $max_length ) ) { //See if the first key is 0 and last key is length - 1 $is_list = true; for ( $i = 0; $i < count( $keys ); $i++ ) { //See if each key correspondes to its position if ( $i != $keys[ $i ] ) { //A key fails at position check. $is_list = false; //It is an associative array. break; } } } foreach ( $arr as $key => $value ) { if ( is_array( $value ) ) { //Custom handling for arrays if ( $is_list ) { $parts[] = array2json( $value ); /* :RECURSION: */ } else { $parts[] = '"' . $key . '":' . array2json( $value ); /* :RECURSION: */ } } else { $str = ''; if ( ! $is_list ) { $str = '"' . $key . '":'; } // Custom handling for multiple data types if ( is_numeric( $value ) ) { $str .= $value; //Numbers } elseif ( false === $value ) { $str .= 'false'; //The booleans } elseif ( true === $value ) { $str .= 'true'; } else { $str .= '"' . addslashes( $value ) . '"'; //All other things } $parts[] = $str; } } $json = implode( ',', $parts ); if ( $is_list ) { return '[' . $json . ']';//Return numerical JSON } return '{' . $json . '}';//Return associative JSON } endif; if ( ! function_exists( 'porto_generate_rand' ) ) : function porto_generate_rand( $length = 31 ) { $valid_characters = 'abcdefghijklmnopqrstuvwxyz0123456789'; $rand = ''; for ( $n = 0; $n < $length; $n++ ) { $which_character = rand( 0, strlen( $valid_characters ) - 1 ); $rand .= substr( $valid_characters, $which_character, 1 ); } return $rand; } endif; if ( ! function_exists( 'porto_is_ajax' ) ) : function porto_is_ajax() { global $porto_is_ajax; if ( is_bool( $porto_is_ajax ) ) { return $porto_is_ajax; } $porto_is_ajax = false; if ( wp_doing_ajax() ) { $porto_is_ajax = true; } elseif ( isset( $_REQUEST['portoajax'] ) && $_REQUEST['portoajax'] ) { $porto_is_ajax = true; } elseif ( function_exists( 'porto_shortcode_is_ajax' ) ) { $porto_is_ajax = porto_shortcode_is_ajax(); } return $porto_is_ajax; } endif; if ( ! function_exists( 'porto_stringify_attributes' ) ) : function porto_stringify_attributes( $attributes ) { $atts = array(); foreach ( $attributes as $name => $value ) { $atts[] = $name . '="' . esc_attr( $value ) . '"'; } return implode( ' ', $atts ); } endif; function porto_has_class( $class, $classes ) { return in_array( $class, explode( ' ', strtolower( $classes ) ) ); } function porto_strip_excerpt_tags( $content ) { $content = str_replace( ']]>', ']]>', $content ); $content = preg_replace( '/<script.*?\/script>/s', '', $content ) ? : $content; $content = preg_replace( '/<style.*?\/style>/s', '', $content ) ? : $content; $content = strip_tags( $content, '<a><h1><h2><h3><h4><h5><h6>' ); return $content; } function porto_strip_tags( $content ) { $content = str_replace( ']]>', ']]>', $content ); $content = preg_replace( '/<script.*?\/script>/s', '', $content ) ? : $content; $content = preg_replace( '/<style.*?\/style>/s', '', $content ) ? : $content; $content = strip_tags( $content ); return $content; } if ( ! function_exists( 'porto_strip_script_tags' ) ) : function porto_strip_script_tags( $content ) { $content = str_replace( ']]>', ']]>', $content ); $content = preg_replace( '/<script.*?\/script>/s', '', $content ) ? : $content; $content = preg_replace( '/<style.*?\/style>/s', '', $content ) ? : $content; return $content; } endif; if ( ! function_exists( 'porto_filter_output' ) ) : function porto_filter_output( $output_escaped ) { return $output_escaped; } endif; if ( ! function_exists( 'porto_sanitize_array' ) ) : function porto_sanitize_array( $arr ) { if ( $arr && is_array( $arr ) ) { foreach ( $arr as $index => $a ) { if ( is_array( $a ) ) { $arr[ $index ] = porto_sanitize_array( $a ); } else { $arr[ $index ] = sanitize_text_field( $a ); } } return $arr; } elseif ( $arr ) { return sanitize_text_field( $arr ); } return false; } endif; /** * Modifies WordPress's built-in comments_popup_link() function to return a string instead of echo comment results */ function get_comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false ) { global $wpcommentspopupfile, $wpcommentsjavascript; $id = get_the_ID(); if ( false === $zero ) { $zero = esc_html__( 'No Comments', 'porto' ); } if ( false === $one ) { $one = esc_html__( '1 Comment', 'porto' ); } if ( false === $more ) { $more = esc_html__( '% Comments', 'porto' ); } if ( false === $none ) { $none = esc_html__( 'Comments Off', 'porto' ); } $number = get_comments_number( $id ); $str = ''; if ( 0 == $number && ! comments_open() && ! pings_open() ) { $str = '<span' . ( ( ! empty( $css_class ) ) ? ' class="' . esc_attr( $css_class ) . '"' : '' ) . '>' . $none . '</span>'; return $str; } if ( post_password_required() ) { $str = esc_html__( 'Enter your password to view comments.', 'porto' ); return $str; } $str = '<a href="'; if ( $wpcommentsjavascript ) { if ( empty( $wpcommentspopupfile ) ) { $home = home_url(); } else { $home = get_option( 'siteurl' ); } $str .= esc_url( $home ) . '/' . $wpcommentspopupfile . '?comments_popup=' . $id; $str .= '" onclick="wpopen(this.href); return false"'; } else { // if comments_popup_script() is not in the template, display simple comment link if ( 0 == $number ) { $str .= esc_url( get_permalink() ) . '#respond'; } else { $str .= esc_url( get_comments_link() ); } $str .= '"'; } if ( ! empty( $css_class ) ) { $str .= ' class="' . esc_attr( $css_class ) . '" '; } $title = the_title_attribute( array( 'echo' => 0 ) ); $str .= apply_filters( 'comments_popup_link_attributes', '' ); /* translators: %s: Title */ $str .= ' title="' . esc_attr( sprintf( __( 'Comment on %s', 'porto' ), $title ) ) . '">'; $str .= get_comments_number_str( $zero, $one, $more ); $str .= '</a>'; return $str; } /** * Modifies WordPress's built-in comments_number() function to return string instead of echo */ function get_comments_number_str( $zero = false, $one = false, $more = false, $deprecated = '' ) { if ( ! empty( $deprecated ) ) { _deprecated_argument( __FUNCTION__, '1.3' ); } $number = get_comments_number(); if ( $number > 1 ) { $output = str_replace( '%', number_format_i18n( $number ), ( false === $more ) ? esc_html__( '% Comments', 'porto' ) : $more ); } elseif ( 0 == $number ) { $output = ( false === $zero ) ? esc_html__( 'No Comments', 'porto' ) : $zero; } else { // must be one $output = ( false === $one ) ? esc_html__( '1 Comment', 'porto' ) : $one; } return apply_filters( 'comments_number', $output, $number ); } /** * Nextend Facebook Login plugin */ if ( ! function_exists( 'porto_nextend_facebook_login' ) ) { function porto_nextend_facebook_login() { if ( class_exists( 'NextendSocialLogin', false ) ) { return NextendSocialLogin::isProviderEnabled( 'facebook' ); } return defined( 'NEW_FB_LOGIN' ); } } if ( ! function_exists( 'porto_nextend_google_login' ) ) { function porto_nextend_google_login() { if ( class_exists( 'NextendSocialLogin', false ) ) { return NextendSocialLogin::isProviderEnabled( 'google' ); } return defined( 'NEW_GOOGLE_LOGIN' ); } } if ( ! function_exists( 'porto_nextend_twitter_login' ) ) { function porto_nextend_twitter_login() { if ( class_exists( 'NextendSocialLogin', false ) ) { return NextendSocialLogin::isProviderEnabled( 'twitter' ); } return defined( 'NEW_TWITTER_LOGIN' ); } } // Woocommerce Vendor Start if ( class_exists( 'WC_Vendors' ) ) : function porto_wc_vendor_header() { global $porto_settings, $post, $wp_query,$vendor_shop; $vendor_id = WCV_Vendors::get_vendor_id( $vendor_shop ); $shop_name = get_user_meta( $vendor_id, 'pv_shop_name', true ); if ( $vendor_shop ) { if ( ! empty( $porto_settings['porto_wcvendors_shop_description'] ) ) { $product_id = get_the_ID(); $author = WCV_Vendors::get_vendor_from_product( $product_id ); $link = WCV_Vendors::get_vendor_shop_page( $author ); $author = WCV_Vendors::get_vendor_from_product( get_the_ID() ); $user = get_userdata( $author ); if ( $user ) { $r = get_user_meta( $user->ID, 'picture', true ); } if ( isset( $r ) && isset( $r['url'] ) ) { $r = $r['url']; ?> <div class="vendor-profile-bg" style="background:url('<?php echo esc_url( $r ); ?>') ;background-size:cover"> <?php } else { ?> <div class="vendor-profile-bg"> <?php } ?> <div class="overlay-vendor-effect"> <?php if ( ! empty( $porto_settings['porto_wcvendors_shop_avatar'] ) ) { ?> <div class="vendor_userimg"> <div class="profile-img"> <a href="<?php echo esc_url( $link ); ?>"> <?php echo get_avatar( $vendor_id, 80 ); ?></a> </div> </div> <?php } ?> <h1><a href="<?php echo esc_url( $link ); ?>"><?php echo esc_html( $shop_name ); ?></a></h1> <div class="custom_shop_description"> <?php echo do_shortcode( get_user_meta( $vendor_id, 'pv_shop_description', true ) ); ?> </div> <?php $author = WCV_Vendors::get_vendor_from_product( get_the_ID() ); $user = get_userdata( $author ); if ( ! empty( $porto_settings['porto_wcvendors_shop_profile'] ) ) { if ( $porto_settings['porto_wcvendors_phone'] ) { if ( isset( $user->phone_number ) && $user->phone_number ) { ?> <span class="vendorcustom-mail"><i class="fas fa-phone aligmentvendor"></i> <?php echo esc_html( $user->phone_number ); ?></span> <?php } } ?> <?php if ( $porto_settings['porto_wcvendors_email'] ) { ?> <?php if ( isset( $user->user_email ) && $user->user_email ) { ?> <span class="vendorcustom-mail"><i class="fas fa-envelope aligmentvendor"></i> <?php echo esc_html( $user->user_email ); ?></span> <?php } ?> <?php } ?> <?php if ( $porto_settings['porto_wcvendors_url'] ) { ?> <?php if ( isset( $user->user_url ) && $user->user_url ) { ?> <span class="vendorcustom-mail"><i class="fas fa-globe aligmentvendor"></i> <?php echo esc_url( $user->user_url ); ?></span> <?php } ?> <?php } ?> <p class="vendor-user-social"> <?php if ( isset( $user->facebook_url ) && $user->facebook_url ) : ?> <span class="user-facebook"><a rel="nofollow" href="<?php echo esc_url( $user->facebook_url ); ?>"><i class="fab fa-facebook-square"></i></a></span> <?php endif; ?> <?php if ( isset( $user->twitter_url ) && $user->twitter_url ) : ?> <span class="user-twitter"><a rel="nofollow" href="<?php echo esc_url( $user->twitter_url ); ?>"><i class="fab fa-twitter-square"></i></a></span> <?php endif; ?> <?php if ( isset( $user->gplus_url ) && $user->gplus_url ) : ?> <span class="user-googleplus"><a rel="nofollow" href="<?php echo esc_url( $user->gplus_url ); ?>"><i class="fab fa-google-plus-square"></i></a></span> <?php endif; ?> <?php if ( isset( $user->youtube_url ) && $user->youtube_url ) : ?> <span class="user-youtube"><a rel="nofollow" href="<?php echo esc_url( $user->youtube_url ); ?>"><i class="fab fa-youtube-square"></i></a></span> <?php endif; ?> <?php if ( isset( $user->linkedin_url ) && $user->linkedin_url ) : ?> <span class="user-linkedin"><a rel="nofollow" href="<?php echo esc_url( $user->linkedin_url ); ?>"><i class="fab fa-linkedin"></i></a></span> <?php endif; ?> <?php if ( isset( $user->flickr_url ) && $user->flickr_url ) : ?> <span class="user-flicker"><a rel="nofollow" href="<?php echo esc_url( $user->flickr_url ); ?>"><i class="fab fa-flickr"></i></a></span> <?php endif; ?> </p> <?php } ?> </div> </div> <?php } ?> <?php } ?> <?php if ( class_exists( 'Woocommerce' ) && is_product() ) { $shop_name = get_user_meta( $post->post_author, 'pv_shop_name', true ); ?> <?php if ( ! empty( $porto_settings['porto_single_wcvendors_product_description'] ) ) { ?> <?php $product_id = get_the_ID(); $author = WCV_Vendors::get_vendor_from_product( $product_id ); $link = WCV_Vendors::get_vendor_shop_page( $author ); $author = WCV_Vendors::get_vendor_from_product( get_the_ID() ); $user = get_userdata( $author ); if ( $user ) { $r = get_user_meta( $user->ID, 'picture', true ); } if ( $user && $r && isset( $r['url'] ) ) { $r = $r['url']; ?> <div class="vendor-profile-bg" style="background:url('<?php echo esc_url( $r ); ?>') ;background-size:cover"> <?php } else { ?> <div class="vendor-profile-bg"> <?php } ?> <div class="overlay-vendor-effect"> <?php if ( $porto_settings['porto_wcvendors_product_avatar'] ) { ?> <div class="vendor_userimg"> <div class="profile-img"> <a href="<?php echo esc_url( $link ); ?>"> <?php echo get_avatar( $author, 80 ); ?> </a> </div> </div> <?php } ?> <h1><a href="<?php echo esc_url( $link ); ?>"><?php echo esc_html( $shop_name ); ?></a></h1> <div class="custom_shop_description"> <?php echo do_shortcode( get_user_meta( $post->post_author, 'pv_shop_description', true ) ); ?> </div> </div> <?php $author = WCV_Vendors::get_vendor_from_product( get_the_ID() ); $user = get_userdata( $author ); if ( $porto_settings['porto_wcvendors_product_profile'] ) { if ( $porto_settings['porto_wcvendors_phone'] ) { if ( $user->phone_number ) { ?> <span class="vendorcustom-mail"><i class="fas fa-phone aligmentvendor"></i> <?php echo esc_html( $user->phone_number ); ?></span> <?php } ?> <?php } ?> <?php if ( $porto_settings['porto_wcvendors_email'] ) { ?> <?php if ( $user->user_email ) { ?> <span class="vendorcustom-mail"><i class="fas fa-envelope aligmentvendor"></i> <?php echo esc_html( $user->user_email ); ?></span> <?php } ?> <?php } ?> <?php if ( $porto_settings['porto_wcvendors_url'] ) { ?> <?php if ( $user->user_url ) { ?> <span class="vendorcustom-mail"><i class="fas fa-globe aligmentvendor"></i> <?php echo esc_url( $user->user_url ); ?></span> <?php } ?> <?php } ?> <p class="vendor-user-social"> <?php if ( $user->facebook_url ) : ?> <span class="user-facebook"><a rel="nofollow" href="<?php echo esc_url( $user->facebook_url ); ?>"><i class="fab fa-facebook-square"></i></a></span> <?php endif; ?> <?php if ( $user->twitter_url ) : ?> <span class="user-twitter"><a rel="nofollow" href="<?php echo esc_url( $user->twitter_url ); ?>"><i class="fab fa-twitter-square"></i></a></span> <?php endif; ?> <?php if ( $user->gplus_url ) : ?> <span class="user-googleplus"><a rel="nofollow" href="<?php echo esc_url( $user->gplus_url ); ?>"><i class="fab fa-google-plus-square"></i></a></span> <?php endif; ?> <?php if ( $user->youtube_url ) : ?> <span class="user-youtube"><a rel="nofollow" href="<?php echo esc_url( $user->youtube_url ); ?>"><i class="fab fa-youtube-square"></i></a></span> <?php endif; ?> <?php if ( $user->linkedin_url ) : ?> <span class="user-linkedin"><a rel="nofollow" href="<?php echo esc_url( $user->linkedin_url ); ?>"><i class="fab fa-linkedin"></i></a></span> <?php endif; ?> <?php if ( $user->flickr_url ) : ?> <span class="user-flicker"><a rel="nofollow" href="<?php echo esc_url( $user->flickr_url ); ?>"><i class="fab fa-flickr"></i></a></span> <?php endif; ?> </p> <?php } ?> </div> <?php } ?> <?php } ?> <?php } endif; // Woocommerce Vendor End if ( ! function_exists( 'porto_settings_google_fonts' ) ) : function porto_settings_google_fonts() { $fonts = array( 'body' => array( '400', '500', '600', '700' ), 'alt' => array( '400', '700' ), 'h1' => array( '400', '600', '700', '800' ), 'h2' => array( '400', '500', '600', '700', '800' ), 'h3' => array( '400', '500', '600', '700', '800' ), 'h4' => array( '400', '500', '600', '700', '800' ), 'h5' => array( '400', '500', '600', '700', '800' ), 'h6' => array( '400', '500', '600', '700', '800' ), 'paragraph' => array( '400', '600', '700' ), 'shortcode-testimonial' => array( '400', '700' ), 'menu' => array(), 'menu-side' => array(), 'menu-popup' => array(), 'add-to-cart' => array( '400', '600', '700' ), 'custom1' => array( '400', '600', '700' ), 'custom2' => array( '400', '600', '700' ), 'custom3' => array( '400', '600', '700' ), ); if ( apply_filters( 'porto_legacy_mode', true ) ) { $fonts = array_merge( $fonts, array( 'footer' => array( '400', '600', '700' ), 'footer-heading' => array( '400', '500', '600', '700', '800' ), 'account-menu' => array( '400' ), ) ); } return $fonts; } endif; // Enable font size in the editor if ( ! function_exists( 'porto_mce_buttons' ) ) { function porto_mce_buttons( $buttons ) { array_unshift( $buttons, 'fontsizeselect' ); // Add Font Size Select return $buttons; } } add_filter( 'mce_buttons_2', 'porto_mce_buttons' ); // Customize mce editor font sizes if ( ! function_exists( 'porto_mce_text_sizes' ) ) { function porto_mce_text_sizes( $init_array ) { $init_array['fontsize_formats'] = '9px 10px 11px 12px 13px 14px 15px 16px 17px 18px 19px 20px 21px 22px 23px 24px 25px 26px 27px 28px 29px 30px 31px 32px 33px 34px 35px 36px 37px 38px 39px 40px 41px 42px 43px 44px 45px 46px 47px 48px 49px 50px 51px 52px 53px 54px 55px 56px 57px 58px 59px 60px 61px 62px 63px 64px 65px 66px 67px 68px 69px 70px 71px 72px'; return $init_array; } } add_filter( 'tiny_mce_before_init', 'porto_mce_text_sizes' ); if ( ! function_exists( 'porto_get_post_type_items' ) ) : function porto_get_post_type_items( $post_type, $args_extended = array(), $post_name_flield = true ) { $result = array(); $args = array( 'post_type' => $post_type, 'post_status' => 'publish', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'title', ); if ( $args && count( $args_extended ) ) { $args = array_merge( $args, $args_extended ); } $query = new WP_Query( $args ); if ( $query->have_posts() ) { while ( $query->have_posts() ) { $p = $query->next_post(); if ( $post_name_flield ) { if ( 'all' == $post_name_flield ) { $result[ $p->post_name ] = array( 'title' =>$p->post_title, 'id' => $p->ID ); } else { $result[ $p->post_name ] = $p->post_title; } } else { $result[ $p->ID ] = $p->post_title; } } } return $result; } endif; if ( ! function_exists( 'porto_is_wide_layout' ) ) : function porto_is_wide_layout( $layout = false ) { global $porto_layout; if ( ! $layout ) { $layout = $porto_layout; } return ( 'widewidth' == $layout || 'wide-left-sidebar' == $layout || 'wide-right-sidebar' == $layout || 'wide-both-sidebar' == $layout ); } endif; function porto_get_template_part( $slug, $name = null, $args = array() ) { if ( empty( $args ) ) { return get_template_part( $slug, $name ); } if ( is_array( $args ) ) { extract( $args ); // @codingStandardsIgnoreLine } $templates = array(); $name = (string) $name; if ( '' !== $name ) { $templates[] = "{$slug}-{$name}.php"; } $templates[] = "{$slug}.php"; $template = locate_template( $templates ); $template = apply_filters( 'porto_get_template_part', $template, $slug, $name ); if ( $template ) { include $template; } } function porto_generate_column_classes( $cols, $return_arr = false ) { $cols = (int) $cols; switch ( $cols ) { case 1: $cols_arr = array( 'xs' => 1 ); break; case 2: $cols_arr = array( 'md' => 2 ); break; case 3: $cols_arr = array( 'sm' => 2, 'lg' => 3, ); break; case 4: $cols_arr = array( 'sm' => 2, 'md' => 3, 'xl' => 4, ); break; case 5: $cols_arr = array( 'xs' => 2, 'sm' => 3, 'lg' => 4, 'xl' => 5, ); break; case 6: $cols_arr = array( 'xs' => 2, 'sm' => 3, 'md' => 4, 'lg' => 5, 'xl' => 6, ); if ( porto_is_wide_layout() ) { $cols_arr['lg'] = 4; $cols_arr['md'] = 3; unset( $cols_arr['sm'] ); } break; case 7: $cols_arr = array( 'xs' => 2, 'sm' => 3, 'md' => 4, 'lg' => 5, 'xl' => 7, ); if ( porto_is_wide_layout() ) { $cols_arr['xl'] = 6; $cols_arr['sl'] = 7; } break; case 8: $cols_arr = array( 'xs' => 2, 'sm' => 3, 'md' => 4, 'lg' => 6, 'xl' => 8, ); if ( porto_is_wide_layout() ) { $cols_arr['xl'] = 7; $cols_arr['sl'] = 8; } break; default: $cols_arr = array( 'md' => 2, 'lg' => 3, 'xl' => 4, ); } if ( ! isset( $cols_arr['xs'] ) ) { $cols_arr['xs'] = 1; } if ( $return_arr ) { return apply_filters( 'porto_generate_column_classes', $cols_arr, $cols, true ); } $class = array(); foreach ( $cols_arr as $key => $columns ) { if ( 'xs' == $key ) { $class[] = 'ccols-' . $columns; } else { $class[] = 'ccols-' . $key . '-' . $columns; } } $class = apply_filters( 'porto_generate_column_classes', $class, $cols, false ); return implode( ' ', $class ); } // update image srcset meta add_filter( 'wp_calculate_image_srcset', 'porto_image_srcset_filter_sizes', 10, 2 ); if ( ! function_exists( 'porto_image_srcset_filter_sizes' ) ) : function porto_image_srcset_filter_sizes( $sources, $size_array ) { if ( empty( $sources ) ) { return $sources; } foreach ( $sources as $width => $source ) { if ( isset( $source['descriptor'] ) && 'w' == $source['descriptor'] && ( $width < apply_filters( 'porto_mini_screen_size', 320 ) || (int) $width > (int) $size_array[0] ) ) { unset( $sources[ $width ] ); } } return $sources; } endif; if ( ! function_exists( 'porto_is_product' ) ) : function porto_is_product() { $result = false; if ( class_exists( 'Woocommerce' ) && is_product() ) { $result = true; } return apply_filters( 'porto_is_product', $result ); } endif; if ( ! function_exists( 'porto_is_shop' ) ) : function porto_is_shop() { $result = false; if ( class_exists( 'Woocommerce' ) && is_shop() ) { $result = true; if ( class_exists( 'WCFMmp' ) ) { if ( function_exists( 'wcfm_get_option' ) ) { $wcfm_store_url = wcfm_get_option( 'wcfm_store_url', 'store' ); } else { $wcfm_store_url = get_option( 'wcfm_store_url', 'store' ); } if ( ! empty( $wcfm_store_url ) && ! empty( get_query_var( $wcfm_store_url ) ) ) { $result = false; } } } return apply_filters( 'porto_is_shop', $result ); } endif; if ( ! function_exists( 'porto_is_product_archive' ) ) : function porto_is_product_archive() { if ( class_exists( 'Woocommerce' ) && is_archive() ) { $term = get_queried_object(); if ( $term && isset( $term->taxonomy ) && isset( $term->term_id ) ) { switch ( $term->taxonomy ) { case in_array( $term->taxonomy, porto_get_taxonomies( 'product' ) ): case 'product_cat': return true; break; default: return false; } } } return false; } endif; /** * whether the page has ptu archive page layout or not * * @since 6.4.0 * * @return string|false $ptu_post_type Unlimted Post Type on success, false on failure. */ if ( ! function_exists( 'porto_has_ptu_archive_layout' ) ) : function porto_has_ptu_archive_layout() { if ( class_exists( 'Post_Types_Unlimited' ) ) { $ptu_post_type = get_post_type(); if ( ! $ptu_post_type ) { $ptu_post_type = get_query_var( 'post_type' ); if ( ! $ptu_post_type ) { return false; } } global $porto_settings; if ( isset( $porto_settings ) && isset( $porto_settings[ $ptu_post_type . '-ptu-archive-layout' ] ) ) { return $ptu_post_type; } } return false; } endif; /** * whether the page has ptu single page layout or not * * @since 6.4.0 * * @return string|false $ptu_post_type Unlimted Post Type on success, false on failure. */ if ( ! function_exists( 'porto_has_ptu_single_layout' ) ) : function porto_has_ptu_single_layout() { if ( class_exists( 'Post_Types_Unlimited' ) ) { $ptu_post_type = get_post_type(); if ( ! $ptu_post_type ) { $ptu_post_type = get_query_var( 'post_type' ); if ( ! $ptu_post_type ) { return false; } } global $porto_settings; if ( isset( $porto_settings ) && isset( $porto_settings[ $ptu_post_type . '-ptu-single-layout' ] ) ) { return $ptu_post_type; } } return false; } endif; if ( ! function_exists( 'porto_is_archive' ) ) : function porto_is_archive() { $result = false; if ( is_archive() ) { $result = true; } return apply_filters( 'porto_is_archive', $result ); } endif; if ( ! function_exists( 'porto_is_elementor_preview' ) ) : function porto_is_elementor_preview() { if ( ! defined( 'ELEMENTOR_VERSION' ) ) { return false; } if ( ( isset( $_REQUEST['action'] ) && ( 'elementor' == $_REQUEST['action'] || 'elementor_ajax' == $_REQUEST['action'] ) ) || isset( $_REQUEST['elementor-preview'] ) ) { return true; } return false; } endif; if ( ! function_exists( 'porto_vc_is_inline' ) ) : function porto_vc_is_inline() { if ( function_exists( 'vc_is_inline' ) ) { return vc_is_inline(); } else { return false; } } endif; if ( ! function_exists( 'porto_is_vc_preview' ) ) : function porto_is_vc_preview() { if ( ! defined( 'VCV_VERSION' ) || ! current_user_can( 'edit_posts' ) ) { return false; } if ( ( is_admin() && isset( $_REQUEST['vcv-action'] ) && 'frontend' == $_REQUEST['vcv-action'] ) || ( ! is_admin() && isset( $_REQUEST['vcv-source-id'] ) ) ) { return true; } return false; } endif; function porto_custom_wpkses_post_tags( $tags, $context ) { if ( 'post' === $context ) { if ( empty( $tags ) ) { $tags = array(); } $tags['iframe'] = array( 'src' => true, 'height' => true, 'width' => true, 'frameborder' => true, 'allowfullscreen' => true, ); } return $tags; } if ( ! function_exists( 'porto_output_tagged_content' ) ) : function porto_output_tagged_content( $content ) { if ( ! $content ) { return ''; } if ( ! defined( 'ELEMENTOR_VERSION' ) ) { return apply_filters( 'the_content', wp_kses_post( $content ) ); } else { add_filter( 'wp_kses_allowed_html', 'porto_custom_wpkses_post_tags', 10, 2 ); $content = do_shortcode( wp_kses_post( $content ) ); remove_filter( 'wp_kses_allowed_html', 'porto_custom_wpkses_post_tags', 10, 2 ); if ( false !== strpos( $content, 'elementor-element' ) ) { // Porto Block shortcode & built with Elementor return wptexturize( $content ); } return function_exists( 'porto_shortcode_format_content' ) ? porto_shortcode_format_content( $content ) : $content; } } endif; if ( ! function_exists( 'porto_config_value' ) ) : function porto_config_value( $value, $unit = '' ) { $result = isset( $value ) ? $value : 0; if ( empty( $unit ) || empty( $result ) ) { return esc_html( $result ); } $o_unit = trim( preg_replace( '/[0-9.-]/', '', $result ) ); if ( ! $o_unit ) { $result .= $unit; } return esc_html( $result ); } endif; if ( ! function_exists( 'porto_is_gutenberg' ) ) : /** * Check if current post is using Gutenberg editor */ function porto_is_gutenberg( $post_type ) { global $wp_version; if ( version_compare( $wp_version, '5', '>=' ) ) { return use_block_editor_for_post_type( $post_type ); } elseif ( function_exists( 'gutenberg_can_edit_post_type' ) ) { return gutenberg_can_edit_post_type( $post_type ); } return false; } endif; if ( ! function_exists( 'porto_check_using_elementor_style' ) ) : /** * @deprecated 6.1.0 - use porto_check_using_page_builder_block instead */ function porto_check_using_elementor_style() { return false; } endif; if ( ! function_exists( 'porto_check_using_vc_style' ) ) : /** * @deprecated 6.1.0 - use porto_check_using_page_builder_block instead */ function porto_check_using_vc_style() { return false; } endif; if ( ! function_exists( 'porto_check_using_page_builder_block' ) ) : /** * check if any elementor or visual composer block is used in the page * * @param $page_builder: el: Elemenetor, vc: Visual Composer */ function porto_check_using_page_builder_block( $page_builder = 'el' ) { if ( 'vc' === $page_builder && ! defined( 'VCV_VERSION' ) ) { return false; } if ( 'el' === $page_builder && ! defined( 'ELEMENTOR_VERSION' ) ) { return false; } $used_blocks = get_theme_mod( '_used_blocks', array() ); if ( ! isset( $used_blocks[ $page_builder ] ) ) { $used_blocks[ $page_builder ] = array(); } $used_blocks = $used_blocks[ $page_builder ]; $result = ! empty( $used_blocks['header'] ) ? $used_blocks['header'] : array(); if ( ! empty( $used_blocks['all'] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['all']; } $result = array_merge( $result, $used_blocks['all'] ); } if ( 'breadcrumbs' != $page_builder ) { $header_id = porto_check_builder_condition( 'header' ); $footer_id = porto_check_builder_condition( 'footer' ); if ( $header_id ) { if ( 'el' === $page_builder && get_post_meta( $header_id, '_elementor_edit_mode', true ) && get_post_meta( $header_id, '_elementor_data', true ) ) { $result[] = $header_id; } elseif ( 'vc' === $page_builder && 'fe' == get_post_meta( $header_id, 'vcv-be-editor', true ) && get_post_meta( $header_id, 'vcvSourceCssFileUrl', true ) ) { $result[] = $header_id; } } if ( $footer_id ) { if ( 'el' === $page_builder && get_post_meta( $footer_id, '_elementor_edit_mode', true ) && get_post_meta( $footer_id, '_elementor_data', true ) ) { $result[] = $footer_id; } elseif ( 'vc' === $page_builder && 'fe' == get_post_meta( $footer_id, 'vcv-be-editor', true ) && get_post_meta( $footer_id, 'vcvSourceCssFileUrl', true ) ) { $result[] = $footer_id; } } } if ( is_home() && ! empty( $used_blocks['blog'] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['blog']; } $result = array_merge( $result, $used_blocks['blog'] ); } if ( ! empty( $used_blocks['menu'] ) ) { foreach ( $used_blocks['menu'] as $menu_id => $block_ids ) { if ( ! empty( $block_ids ) ) { if ( 'breadcrumbs' == $page_builder ) { return $block_ids; } $result = array_merge( $result, $block_ids ); } } } if ( ! empty( $used_blocks['sidebar'] ) ) { global $porto_layout, $porto_sidebar, $porto_sidebar2; foreach ( $used_blocks['sidebar'] as $sidebar_id => $block_ids ) { if ( ! empty( $block_ids ) && ( 0 === strpos( $sidebar_id, 'footer-' ) || 0 === strpos( $sidebar_id, 'content-bottom-' ) ) ) { if ( 'breadcrumbs' == $page_builder ) { return $block_ids; } $result = array_merge( $result, $block_ids ); } } if ( in_array( $porto_layout, porto_options_both_sidebars() ) && ( ! empty( $used_blocks['sidebar'][ $porto_sidebar ] ) || ! empty( $used_blocks['sidebar'][ $porto_sidebar2 ] ) ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['sidebar'][ $porto_sidebar2 ]; } $result = array_merge( $result, $used_blocks['sidebar'][ $porto_sidebar2 ] ); } if ( in_array( $porto_layout, porto_options_sidebars() ) && ! empty( $used_blocks['sidebar'][ $porto_sidebar ] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['sidebar'][ $porto_sidebar ]; } $result = array_merge( $result, $used_blocks['sidebar'][ $porto_sidebar ] ); } } if ( is_singular( 'product' ) ) { if ( ! empty( $used_blocks['product'] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['product']; } $result = array_merge( $result, $used_blocks['product'] ); } if ( 'breadcrumbs' != $page_builder ) { $product_id = porto_check_builder_condition( 'product' ); if ( $product_id ) { if ( 'el' === $page_builder && get_post_meta( $product_id, '_elementor_edit_mode', true ) && get_post_meta( $product_id, '_elementor_data', true ) ) { $result[] = $product_id; } elseif ( 'vc' === $page_builder && 'fe' == get_post_meta( $product_id, 'vcv-be-editor', true ) && get_post_meta( $product_id, 'vcvSourceCssFileUrl', true ) ) { $result[] = $product_id; } } } } if ( 'breadcrumbs' != $page_builder && class_exists( 'Woocommerce' ) && ( is_shop() || is_product_category() || is_product_tag() ) ) { $shop_id = porto_check_builder_condition( 'shop' ); if ( $shop_id ) { if ( 'el' === $page_builder && get_post_meta( $shop_id, '_elementor_edit_mode', true ) && get_post_meta( $shop_id, '_elementor_data', true ) ) { $result[] = $shop_id; } elseif ( 'vc' === $page_builder && 'fe' == get_post_meta( $shop_id, 'vcv-be-editor', true ) && get_post_meta( $shop_id, 'vcvSourceCssFileUrl', true ) ) { $result[] = $shop_id; } } } if ( is_singular() ) { $post_id = get_the_ID(); if ( isset( $used_blocks['post'] ) && ! empty( $used_blocks['post'][ $post_id ] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['post'][ $post_id ]; } $result = array_merge( $result, $used_blocks['post'][ $post_id ] ); } if ( isset( $used_blocks['post_c'] ) && ! empty( $used_blocks['post_c'][ $post_id ] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks['post_c'][ $post_id ]; } $result = array_merge( $result, $used_blocks['post_c'][ $post_id ] ); } if ( ! is_singular( 'product' ) ) { $builder_id = porto_check_builder_condition( 'single' ); if ( $builder_id && 'el' === $page_builder && get_post_meta( $builder_id, '_elementor_edit_mode', true ) && get_post_meta( $builder_id, '_elementor_data', true ) ) { $result[] = $builder_id; } } } else { $term_id_type = porto_get_id_type(); if ( $term_id_type ) { if ( isset( $used_blocks[ $term_id_type[1] ] ) && ! empty( $used_blocks[ $term_id_type[1] ][ $term_id_type[0] ] ) ) { if ( 'breadcrumbs' == $page_builder ) { return $used_blocks[ $term_id_type[1] ][ $term_id_type[0] ]; } $result = array_merge( $result, $used_blocks[ $term_id_type[1] ][ $term_id_type[0] ] ); } } } if ( is_404() ) { global $porto_settings; if ( ! empty( $porto_settings['error-block'] ) ) { global $wpdb; $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = 'porto_builder' AND post_name = %s", sanitize_text_field( $porto_settings['error-block'] ) ) ); if ( $post_id && ( ( defined( 'ELEMENTOR_VERSION' ) && get_post_meta( $post_id, '_elementor_edit_mode', true ) && get_post_meta( $post_id, '_elementor_data', true ) ) || ( defined( 'VCV_VERSION' ) && get_post_meta( $post_id, 'vcv-pageContent', true ) ) ) ) { $result[] = (int) $post_id; } } } // blocks $block_pos_arr = array( 'top', 'banner', 'content-top', 'content-inner-top', 'content-inner-bottom', 'content-bottom', 'bottom' ); foreach ( $block_pos_arr as $block_pos ) { $builder_id = porto_check_builder_condition( 'block_' . $block_pos . '-block' ); if ( $builder_id && 'el' === $page_builder && get_post_meta( $builder_id, '_elementor_edit_mode', true ) && get_post_meta( $builder_id, '_elementor_data', true ) ) { $result[] = $builder_id; } } return array_unique( $result, SORT_NUMERIC ); } endif; if ( ! function_exists( 'porto_check_builder_condition' ) ) : // Only render if Porto Template Builder is publish add_filter( 'porto_block_is_trash', function( $block_id ) { if ( 'publish' == get_post_status( $block_id ) ) { return $block_id; } else { return false; } } ); function porto_check_builder_condition( $location = 'header' ) { global $porto_block_template; if ( ! empty( $porto_block_template ) ) { return false; } global $porto_settings; if ( 'header' == $location && 'header_builder_p' != $porto_settings['header-type-select'] ) { return false; } if ( isset( $porto_settings['conditions'], $porto_settings['conditions'][ $location ] ) ) { return $porto_settings['conditions'][ $location ]; } global $porto_settings_optimize; if ( ! empty( $porto_settings_optimize['disabled_pbs'] ) && is_array( $porto_settings_optimize['disabled_pbs'] ) && in_array( $location, $porto_settings_optimize['disabled_pbs'] ) ) { $porto_settings['conditions'][ $location ] = false; return false; } // ajax category filter if ( ( 'archive' == $location || 'shop' == $location ) && porto_is_ajax() && ! empty( $_REQUEST['builder_id'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $_REQUEST['builder_id'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } if ( ! isset( $porto_settings['conditions'] ) ) { $porto_settings['conditions'] = array(); } if ( is_singular() ) { $builder_id = get_post_meta( get_the_ID(), '_porto_builder_' . $location, true ); if ( $builder_id && get_post( $builder_id ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } if ( ! is_page() ) { $taxonomies = get_object_taxonomies( get_post_type(), 'objects' ); $taxonomies = wp_filter_object_list( $taxonomies, array( 'public' => true, 'show_in_nav_menus' => true, ) ); if ( ! empty( $taxonomies ) ) { foreach ( $taxonomies as $tax ) { $terms = wp_get_post_terms( get_the_ID(), $tax->name, array( 'fields' => 'ids' ) ); foreach ( $terms as $term_id ) { $builder_id = get_term_meta( $term_id, '_porto_builder_single_' . $location, true ); if ( $builder_id && get_post( $builder_id ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } } } } } elseif ( is_archive() && ! is_author() && ! is_date() && ! is_search() ) { $queried_obj = get_queried_object(); if ( $queried_obj && property_exists( $queried_obj, 'term_id' ) ) { $term_id = $queried_obj->term_id; $builder_id = get_term_meta( $term_id, '_porto_builder_' . $location, true ); if ( $builder_id && get_post( $builder_id ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } } $builder_conditions = get_theme_mod( 'builder_conditions', array() ); if ( ! empty( $builder_conditions[ $location ] ) ) { if ( is_404() && ! empty( $builder_conditions[ $location ]['single/404'] ) && get_post( $builder_conditions[ $location ]['single/404'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['single/404'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( is_page() && ! empty( $builder_conditions[ $location ]['single/page'] ) && get_post( $builder_conditions[ $location ]['single/page'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['single/page'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( is_date() && ! empty( $builder_conditions[ $location ]['archive/date'] ) && get_post( $builder_conditions[ $location ]['archive/date'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['archive/date'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( is_search() && ! empty( $builder_conditions[ $location ]['archive/search'] ) && get_post( $builder_conditions[ $location ]['archive/search'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['archive/search'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( is_author() && ! empty( $builder_conditions[ $location ]['archive/author'] ) && get_post( $builder_conditions[ $location ]['archive/author'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['archive/author'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } else { $archive_post_type = ''; if ( is_archive() ) { global $wp_query; $archive_post_type = isset( $wp_query->query_vars ) && ! empty( $wp_query->query_vars['post_type'] ) ? $wp_query->query_vars['post_type'] : ''; if ( ! $archive_post_type ) { $archive_post_type = get_post_type(); } } foreach ( $builder_conditions[ $location ] as $c => $object_id ) { if ( ! $object_id || ( false === strpos( $c, 'single/' ) && false === strpos( $c, 'taxonomy/' ) && false === strpos( $c, 'archive/' ) ) || ! get_post( $object_id ) ) { continue; } if ( false === strpos( $c, 'single/' ) ) { $c = str_replace( 'taxonomy/', '', $c ); } if ( 0 === strpos( $c, 'single/' ) ) { $c = str_replace( 'single/', '', $c ); if ( 0 === strpos( $c, 'taxonomy/' ) ) { $c = str_replace( 'taxonomy/', '', $c ); if ( is_singular() ) { $terms = wp_get_post_terms( get_the_ID(), $c, array( 'fields' => 'names' ) ); if ( ! empty( $terms ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } } elseif ( is_singular( $c ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } elseif ( ( 'category' == $c && is_category() ) || ( 'post_tag' == $c && is_tag() ) || ( 'archive/post' == $c && is_home() ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( 'archive/allpost' == $c && ( is_home() || is_category() || is_tag() || ( is_archive() && 'post' == $archive_post_type ) ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( class_exists( 'Woocommerce' ) && ( ( 'product_cat' == $c && is_product_category() ) || ( 'product_tag' == $c && is_product_tag() ) || ( 'archive/product' == $c && is_shop() ) ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( class_exists( 'Woocommerce' ) && ( 'archive/allproduct' == $c && ( is_shop() || is_product_category() || is_product_tag() || ( is_archive() && 'product' == $archive_post_type ) ) ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( false === strpos( $c, 'archive/' ) && is_tax( $c ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } elseif ( 0 === strpos( $c, 'archive/all' ) ) { $c = str_replace( 'archive/all', '', $c ); $f = 'is_porto_' . $c . 's_page'; if ( ( function_exists( $f ) && $f() ) || is_post_type_archive( $c ) || ( is_archive() && $c == $archive_post_type ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } if ( is_tax() ) { // taxonomy page if ( ! empty( get_queried_object()->taxonomy ) ) { $taxonomy_post_type = get_taxonomy( get_queried_object()->taxonomy )->object_type; if ( isset( $taxonomy_post_type ) ) { if ( is_array( $taxonomy_post_type ) ) { $taxonomy_post_type = $taxonomy_post_type[0]; } if ( $c == $taxonomy_post_type ) { // All member archives page => member_cat like $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } } } } elseif ( 0 === strpos( $c, 'archive/' ) ) { $c = str_replace( 'archive/', '', $c ); $f = 'is_porto_' . $c . 's_page'; if ( ( function_exists( $f ) && $f() ) || is_post_type_archive( $c ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $object_id ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } } } if ( is_singular() ) { if ( ! empty( $builder_conditions[ $location ]['single'] ) && get_post( $builder_conditions[ $location ]['single'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['single'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } elseif ( is_archive() ) { if ( ! empty( $builder_conditions[ $location ]['archive'] ) && get_post( $builder_conditions[ $location ]['archive'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['archive'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } if ( ! empty( $builder_conditions[ $location ]['all'] ) && get_post( $builder_conditions[ $location ]['all'] ) ) { $res = apply_filters( 'porto_block_is_trash', (int) $builder_conditions[ $location ]['all'] ); if ( $res ) { $porto_settings['conditions'][ $location ] = $res; return $res; } } } $porto_settings['conditions'][ $location ] = false; return false; } endif; /** * old WordPress fallback functions */ if ( ! function_exists( 'wp_slash_strings_only' ) ) : function wp_slash_strings_only( $val ) { return is_string( $val ) ? wp_slash( $val ) : $val; } endif; /** * Get the current page id. * * @return bool|int * @since 6.3.0 */ if ( ! function_exists( 'porto_current_page_id' ) ) : function porto_current_page_id() { global $wp_query; if ( is_404() ) { // 404 page return '404-page'; } if ( is_search() ) { // search page if ( ! empty( $_REQUEST['post_type'] ) ) { return 'search-page-' . $_REQUEST['post_type']; } return 'search-page'; } if ( is_home() && get_option( 'show_on_front' ) && get_option( 'page_for_posts' ) ) { return get_option( 'page_for_posts' ); } if ( ! $wp_query ) { return false; } $page_id = get_queried_object_id(); // Shop page. if ( ! is_admin() && class_exists( 'WooCommerce' ) && is_shop() ) { return (int) get_option( 'woocommerce_shop_page_id' ); } // Product Category and Tag Page. if ( ! is_admin() && class_exists( 'WooCommerce' ) && ( ! is_shop() && ( is_tax( 'product_cat' ) || is_tax( 'product_tag' ) ) ) ) { return $page_id . '-archive'; } // Homepage. if ( 'posts' === get_option( 'show_on_front' ) && is_home() ) { return $page_id; } if ( ! is_singular() && is_archive() ) { if ( empty( $page_id ) ) { $page_id = get_post_type(); if ( is_tax() ) { $queried = get_queried_object(); if ( isset( $queried ) && ! empty( $queried->slug ) && ! empty( $queried->taxonomy ) ) { $page_id .= '-' . $queried->slug . '-' . $queried->taxonomy; } } } return $page_id . '-archive'; } if ( ! is_singular() ) { return false; } return $page_id; } endif; /** * Echo or Return inline css. * This function only uses for composed by style tag. * * @since 6.3.0 */ if ( ! function_exists( 'porto_filter_inline_css' ) ) : function porto_filter_inline_css( $inline_css, $is_echo = true ) { if ( ! class_exists( 'Porto_Performance' ) ) { return; } if ( empty( Porto_Performance::$defer_style ) ) { // not defer loading, only return and echo if ( $is_echo ) { echo porto_filter_output( $inline_css ); } else { return $inline_css; } } else { if ( 'no' == Porto_Performance::has_merged_css() ) { global $porto_body_merged_css; if ( isset( $porto_body_merged_css ) ) { $inline_css = str_replace( PHP_EOL, '', $inline_css ); $inline_css = preg_replace( '/<style.*?>/s', '', $inline_css ) ? : $inline_css; $inline_css = preg_replace( '/<\/style.*?>/s', '', $inline_css ) ? : $inline_css; $porto_body_merged_css .= $inline_css; } } return ''; } } endif; /** * Check if current page is amp. * * @since 6.3.0 */ if ( ! function_exists( 'porto_is_amp_endpoint' ) ) { function porto_is_amp_endpoint() { return function_exists( 'is_amp_endpoint' ) && is_amp_endpoint(); } } /** * Add body class for particular purpose. * * @since 6.3.0 */ add_filter( 'body_class', 'porto_add_body_class' ); if ( ! function_exists( 'porto_add_body_class' ) ) { function porto_add_body_class( $classes ) { global $porto_settings; if ( ! empty( $porto_settings['border-radius'] ) ) { $classes[] = 'porto-rounded'; } if ( isset( $porto_settings['breadcrumbs-bottom-border'] ) && ! empty( $porto_settings['breadcrumbs-bottom-border']['border-top'] ) && '0px' != $porto_settings['breadcrumbs-bottom-border']['border-top'] ) { $classes[] = 'porto-breadcrumbs-bb'; } return $classes; } } /** * Allow webp images to upload * * @since 6.3.0 */ add_filter( 'upload_mimes', function( $mimes ) { $mimes['webp'] = 'image/webp'; return $mimes; } ); /** * Get installed time. * * @since 6.5.0 */ if ( ! function_exists( 'porto_installed_time' ) ) : function porto_installed_time() { $installed_time = get_option( 'porto_installed_time' ); if ( ! $installed_time ) { $installed_time = time(); update_option( 'porto_installed_time', $installed_time ); } return $installed_time; } endif; /** * Get the url of particular id in theme option. * * @since 6.7.0 */ if ( ! function_exists( 'porto_get_theme_option_url' ) ) { function porto_get_theme_option_url( $option_id, $type = 'field' ) { if ( ! isset( $GLOBALS['porto_option_style'] ) ) { $GLOBALS['porto_option_style'] = get_theme_mod( 'theme_options_use_new_style', false ); } if ( $GLOBALS['porto_option_style'] ) { return esc_url( admin_url( 'customize.php?type=' . $type . '#' . $option_id ) ); } else { return esc_url( admin_url( 'admin.php?page=porto_settings#' . $option_id ) ); } } } /** * Get the xl width * * @since 6.11.0 */ if ( ! function_exists( 'porto_get_xl_width' ) ) { function porto_get_xl_width( $xl = true ) { global $porto_settings; $container_xl = 1140; $container_sl = (int) $porto_settings['container-width']; if ( (int) $porto_settings['container-width'] < 1360 ) { $container_xl = (int) $porto_settings['container-width']; $container_sl = 1360; } if ( $xl ) { return $container_xl + (int) $porto_settings['grid-gutter-width']; } return $container_sl + 2 * (int) $porto_settings['grid-gutter-width']; } } if ( class_exists( 'Woocommerce' ) ) { /** * Check the barcode of the product * * @since 7.2.0 */ if ( ! function_exists( 'porto_check_product_code_type' ) ) { function porto_check_product_code_type( $code ) { if ( $code ) { if ( preg_match( '/^[0-9]{0,8}$/', $code ) ) { return array( 'gtin', __( 'GTIN', 'woocommerce' ) ); } elseif ( preg_match( '/^[0-9]{0,12}$/', $code ) ) { return array( 'upc', __( 'UPC', 'woocommerce' ) ); } elseif ( preg_match( '/^[0-9]{0,13}$/', $code ) ) { return array( 'ean', __( 'EAN', 'woocommerce' ) ); } elseif ( preg_match( '/^[0-9]{0,14}$/', $code ) ) { return array( 'gtin', __( 'GTIN', 'woocommerce' ) ); } elseif ( preg_match( '/' . '^' . '(?:ISBN(?:-1[03])?:? )?' . // Optional ISBN/ISBN-10/ISBN-13 identifier. '(?=[0-9X]{10}$' . // Require 10 digits/Xs (no separators). '|' . // Or: '(?=(?:[0-9]+[- ]){3})' . // Require 3 separators '[- 0-9X]{13}$' . // Out of 13 characters total. '|' . // Or: '97[89][0-9]{10}$' . // 978/979 plus 10 digits (13 total). '|' . // Or: '(?=(?:[0-9]+[- ]){4})' . // Require 4 separators '[- 0-9]{17}$' . // Out of 17 characters total. ')' . // End format pre-checks. '(?:97[89][- ]?)?' . // Optional ISBN-13 prefix. '[0-9]{1,5}[- ]?' . // 1-5 digit group identifier. '[0-9]+[- ]?[0-9]+[- ]?' . // Publisher and title identifiers. '[0-9X]' . // Check digit. '$' . '/i', $code ) ) { return array( 'isbn', __( 'ISBN', 'woocommerce' ) ); } } return false; } } } if ( ! function_exists( 'porto_cache_generate_key' ) ) : /** * Generate cache key * * @since 7.2.9 */ function porto_cache_generate_key( $args ) { if ( is_array( $args ) ) { $args['lang'] = Porto_WPML::get_instance()->get_active_language(); } else { $args .= '&lang=' . Porto_WPML::get_instance()->get_active_language(); } return md5( maybe_serialize( $args ) ); } endif; if ( ! function_exists( 'porto_cache_get' ) ) : /** * Get data from cache * * @since 7.2.9 */ function porto_cache_get( $args, $key = '' ) { if ( ! $key ) { $key = porto_cache_generate_key( $args ); } return wp_cache_get( $key, 'porto_data' ); } endif; if ( ! function_exists( 'porto_cache_set' ) ) : /** * Set data to cache * * @since 7.2.9 */ function porto_cache_set( $args, $data, $key = '' ) { if ( ! $key ) { $key = porto_cache_generate_key( $args ); } wp_cache_set( $key, $data, 'porto_data' ); } endif;
Save
Cancel