X7ROOT File Manager
Current Path:
/home/notabjze/boatingnight.com/wp-content/themes/yachbat/inc
home
/
notabjze
/
boatingnight.com
/
wp-content
/
themes
/
yachbat
/
inc
/
ðŸ“
..
📄
class-customize.php
(41.74 KB)
📄
class-elementor.php
(7.39 KB)
📄
class-hook.php
(11.19 KB)
📄
class-main.php
(10.67 KB)
📄
class-widgets.php
(1.25 KB)
📄
class-woo-template-functions.php
(11.54 KB)
📄
class-woo-template-hooks.php
(4.8 KB)
📄
class-woo.php
(6.35 KB)
📄
functions.php
(8.64 KB)
Editing: functions.php
<?php if (!defined( 'ABSPATH' )) exit; // Get current ID of post/page, etc if( !function_exists( 'yachbat_get_current_id' )): function yachbat_get_current_id(){ $current_page_id = ''; // Get The Page ID You Need if(class_exists("woocommerce")) { if( is_shop() ){ ///|| is_product_category() || is_product_tag()) { $current_page_id = get_option ( 'woocommerce_shop_page_id' ); }elseif(is_cart()) { $current_page_id = get_option ( 'woocommerce_cart_page_id' ); }elseif(is_checkout()){ $current_page_id = get_option ( 'woocommerce_checkout_page_id' ); }elseif(is_account_page()){ $current_page_id = get_option ( 'woocommerce_myaccount_page_id' ); }elseif(is_view_order_page()){ $current_page_id = get_option ( 'woocommerce_view_order_page_id' ); } } if($current_page_id=='') { if ( is_home () && is_front_page () ) { $current_page_id = ''; } elseif ( is_home () ) { $current_page_id = get_option ( 'page_for_posts' ); } elseif ( is_search () || is_category () || is_tag () || is_tax () || is_archive() ) { $current_page_id = ''; } elseif ( !is_404 () ) { $current_page_id = get_the_id(); } } return $current_page_id; } endif; if (!function_exists('yachbat_is_elementor_active')) { function yachbat_is_elementor_active(){ return did_action( 'elementor/loaded' ); } } if (!function_exists('yachbat_is_woo_active')) { function yachbat_is_woo_active(){ return class_exists('woocommerce'); } } if (!function_exists('yachbat_is_blog_archive')) { function yachbat_is_blog_archive() { return (is_home() && is_front_page()) || is_archive() || is_category() || is_tag() || is_home(); } } /* Get ID from Slug of Header Footer Builder - Post Type */ function yachbat_get_id_by_slug( $page_slug ) { $page = get_page_by_path( $page_slug, OBJECT, 'ova_framework_hf_el' ) ; if ($page) { return $page->ID; } else { return null; } } function yachbat_custom_text ($content = "",$limit = 15) { $content = explode(' ', $content, $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('`[[^]]*]`','',$content); return strip_tags( $content ); } /** * Google Font sanitization * * @param string JSON string to be sanitized * @return string Sanitized input */ if ( ! function_exists( 'yachbat_google_font_sanitization' ) ) { function yachbat_google_font_sanitization( $input ) { $val = json_decode( $input, true ); if( is_array( $val ) ) { foreach ( $val as $key => $value ) { $val[$key] = sanitize_text_field( $value ); } $input = json_encode( $val ); } else { $input = json_encode( sanitize_text_field( $val ) ); } return $input; } } /* Default Primary Font in Customize */ if ( ! function_exists( 'yachbat_default_primary_font' ) ) { function yachbat_default_primary_font() { $customizer_defaults = json_encode( array( 'font' => 'Domine', 'regularweight' => '100,200,300,400,500,600,700,800,900', 'category' => 'serif' ) ); return $customizer_defaults; } } /* Default Second Font in Customize */ if ( ! function_exists( 'yachbat_default_second_font' ) ) { function yachbat_default_second_font() { $customizer_defaults = json_encode( array( 'font' => 'Work Sans', 'regularweight' => '100,200,300,400,500,600,700,800,900', 'category' => 'serif' ) ); return $customizer_defaults; } } if ( ! function_exists( 'yachbat_woo_sidebar' ) ) { function yachbat_woo_sidebar(){ if( class_exists('woocommerce') && is_product() ){ return get_theme_mod( 'woo_product_layout', 'woo_layout_1c' ); }else{ return get_theme_mod( 'woo_archive_layout', 'woo_layout_1c' ); } } } if( !function_exists( 'yachbat_blog_show_media' ) ){ function yachbat_blog_show_media(){ $show_media = get_theme_mod( 'blog_archive_show_media', 'yes' ); return isset( $_GET['show_media'] ) ? $_GET['show_media'] : $show_media; } } if( !function_exists( 'yachbat_blog_show_heading' ) ){ function yachbat_blog_show_heading(){ $show_heading = get_theme_mod( 'blog_archive_show_heading', 'yes' ); return isset( $_GET['show_heading'] ) ? $_GET['show_heading'] : $show_heading; } } if( !function_exists( 'yachbat_blog_show_title' ) ){ function yachbat_blog_show_title(){ $show_title = get_theme_mod( 'blog_archive_show_title', 'yes' ); return isset( $_GET['show_title'] ) ? $_GET['show_title'] : $show_title; } } if( !function_exists( 'yachbat_blog_show_date' ) ){ function yachbat_blog_show_date(){ $show_date = get_theme_mod( 'blog_archive_show_date', 'yes' ); return isset( $_GET['show_date'] ) ? $_GET['show_date'] : $show_date; } } if( !function_exists( 'yachbat_blog_show_cat' ) ){ function yachbat_blog_show_cat(){ $show_cat = get_theme_mod( 'blog_archive_show_cat', 'yes' ); return isset( $_GET['show_cat'] ) ? $_GET['show_cat'] : $show_cat; } } if( !function_exists( 'yachbat_blog_show_author' ) ){ function yachbat_blog_show_author(){ $show_author = get_theme_mod( 'blog_archive_show_author', 'yes' ); return isset( $_GET['show_author'] ) ? $_GET['show_author'] : $show_author; } } if( !function_exists( 'yachbat_blog_show_comment' ) ){ function yachbat_blog_show_comment(){ $show_comment = get_theme_mod( 'blog_archive_show_comment', 'yes' ); return isset( $_GET['show_comment'] ) ? $_GET['show_comment'] : $show_comment; } } if( !function_exists( 'yachbat_blog_show_excerpt' ) ){ function yachbat_blog_show_excerpt(){ $show_excerpt = get_theme_mod( 'blog_archive_show_excerpt', 'yes' ); return isset( $_GET['show_excerpt'] ) ? $_GET['show_excerpt'] : $show_excerpt; } } if( !function_exists( 'yachbat_blog_show_readmore' ) ){ function yachbat_blog_show_readmore(){ $show_readmore = get_theme_mod( 'blog_archive_show_readmore', 'yes' ); return isset( $_GET['show_readmore'] ) ? $_GET['show_readmore'] : $show_readmore; } } if( !function_exists( 'yachbat_post_show_media' ) ){ function yachbat_post_show_media(){ $show_media = get_theme_mod( 'blog_single_show_media', 'yes' ); return isset( $_GET['show_media'] ) ? $_GET['show_media'] : $show_media; } } if( !function_exists( 'yachbat_post_show_title' ) ){ function yachbat_post_show_title(){ $show_title = get_theme_mod( 'blog_single_show_title', 'yes' ); return isset( $_GET['show_title'] ) ? $_GET['show_title'] : $show_title; } } if( !function_exists( 'yachbat_post_show_date' ) ){ function yachbat_post_show_date(){ $show_date = get_theme_mod( 'blog_single_show_date', 'yes' ); return isset( $_GET['show_date'] ) ? $_GET['show_date'] : $show_date; } } if( !function_exists( 'yachbat_post_show_cat' ) ){ function yachbat_post_show_cat(){ $show_cat = get_theme_mod( 'blog_single_show_cat', 'yes' ); return isset( $_GET['show_cat'] ) ? $_GET['show_cat'] : $show_cat; } } if( !function_exists( 'yachbat_post_show_author' ) ){ function yachbat_post_show_author(){ $show_author = get_theme_mod( 'blog_single_show_author', 'yes' ); return isset( $_GET['show_author'] ) ? $_GET['show_author'] : $show_author; } } if( !function_exists( 'yachbat_post_show_comment' ) ){ function yachbat_post_show_comment(){ $show_comment = get_theme_mod( 'blog_single_show_comment', 'yes' ); return isset( $_GET['show_comment'] ) ? $_GET['show_comment'] : $show_comment; } } if( !function_exists( 'yachbat_post_show_tag' ) ){ function yachbat_post_show_tag(){ $show_tag = get_theme_mod( 'blog_single_show_tag', 'yes' ); return isset( $_GET['show_tag'] ) ? $_GET['show_tag'] : $show_tag; } } if( !function_exists( 'yachbat_post_show_share_social_icon' ) ){ function yachbat_post_show_share_social_icon(){ $show_share_social_icon = get_theme_mod( 'blog_single_show_share_social_icon', 'yes' ); return isset( $_GET['show_share_social_icon'] ) ? $_GET['show_share_social_icon'] : $show_share_social_icon; } }
Upload File
Create Folder