File: /var/www/html/wpamazingsecret/wp-content/themes/porto/inc/functions/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_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() {
return 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' ),
'footer' => array( '400', '600', '700' ),
'footer-heading' => array( '400', '500', '600', '700', '800' ),
'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' ),
'account-menu' => array( '400' ),
);
}
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 ) {
$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 ) {
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;
/**
* 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 );
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;
}
}
}
return array_unique( $result, SORT_NUMERIC );
}
endif;
if ( ! function_exists( 'porto_check_builder_condition' ) ) :
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'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $_REQUEST['builder_id'];
return (int) $_REQUEST['builder_id'];
}
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 ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_id;
return (int) $builder_id;
}
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 ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_id;
return (int) $builder_id;
}
}
}
}
}
} 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 ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_id;
return (int) $builder_id;
}
}
}
$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'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['single/404'];
return (int) $builder_conditions[ $location ]['single/404'];
} elseif ( is_page() && ! empty( $builder_conditions[ $location ]['single/page'] ) && get_post( $builder_conditions[ $location ]['single/page'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['single/page'];
return (int) $builder_conditions[ $location ]['single/page'];
} elseif ( is_date() && ! empty( $builder_conditions[ $location ]['archive/date'] ) && get_post( $builder_conditions[ $location ]['archive/date'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['archive/date'];
return (int) $builder_conditions[ $location ]['archive/date'];
} elseif ( is_search() && ! empty( $builder_conditions[ $location ]['archive/search'] ) && get_post( $builder_conditions[ $location ]['archive/search'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['archive/search'];
return (int) $builder_conditions[ $location ]['archive/search'];
} elseif ( is_author() && ! empty( $builder_conditions[ $location ]['archive/author'] ) && get_post( $builder_conditions[ $location ]['archive/author'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['archive/author'];
return (int) $builder_conditions[ $location ]['archive/author'];
} 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 ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
}
}
} elseif ( is_singular( $c ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
}
} elseif ( ( 'category' == $c && is_category() ) || ( 'post_tag' == $c && is_tag() ) || ( 'archive/post' == $c && is_home() ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
} elseif ( 'archive/allpost' == $c && ( is_home() || is_category() || is_tag() || ( is_archive() && 'post' == $archive_post_type ) ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
} elseif ( class_exists( 'Woocommerce' ) && ( ( 'product_cat' == $c && is_product_category() ) || ( 'product_tag' == $c && is_product_tag() ) || ( 'archive/product' == $c && is_shop() ) ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
} elseif ( class_exists( 'Woocommerce' ) && ( 'archive/allproduct' == $c && ( is_shop() || is_product_category() || is_product_tag() || ( is_archive() && 'product' == $archive_post_type ) ) ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
} elseif ( false === strpos( $c, 'archive/' ) && is_tax( $c ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
} 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 ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
}
} 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 ) ) {
$porto_settings['conditions'][ $location ] = (int) $object_id;
return (int) $object_id;
}
}
}
}
if ( is_singular() ) {
if ( ! empty( $builder_conditions[ $location ]['single'] ) && get_post( $builder_conditions[ $location ]['single'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['single'];
return (int) $builder_conditions[ $location ]['single'];
}
} elseif ( is_archive() ) {
if ( ! empty( $builder_conditions[ $location ]['archive'] ) && get_post( $builder_conditions[ $location ]['archive'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['archive'];
return (int) $builder_conditions[ $location ]['archive'];
}
}
if ( ! empty( $builder_conditions[ $location ]['all'] ) && get_post( $builder_conditions[ $location ]['all'] ) ) {
$porto_settings['conditions'][ $location ] = (int) $builder_conditions[ $location ]['all'];
return (int) $builder_conditions[ $location ]['all'];
}
}
$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 $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 ) ) {
$page_id .= '-' . $queried->slug;
}
}
}
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;