HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/public_html/wp-content/themes/coffee-tea/functions.php
<?php
if ( ! function_exists( 'coffee_tea_setup' ) ) :
function coffee_tea_setup() {

// Root path/URI.
define( 'COFFEE_TEA_PARENT_DIR', get_template_directory() );
define( 'COFFEE_TEA_PARENT_URI', get_template_directory_uri() );

// Root path/URI.
define( 'COFFEE_TEA_PARENT_INC_DIR', COFFEE_TEA_PARENT_DIR . '/inc');
define( 'COFFEE_TEA_PARENT_INC_URI', COFFEE_TEA_PARENT_URI . '/inc');

	// Add default posts and comments RSS feed links to head.
	add_theme_support( 'automatic-feed-links' );
	add_theme_support( 'wc-product-gallery-zoom' );
	add_theme_support( 'wc-product-gallery-slider' );

	/*
	 * Let WordPress manage the document title.
	 */
	add_theme_support( 'title-tag' );

	add_theme_support( 'responsive-embeds' );
	
	/*
	 * Enable support for Post Thumbnails on posts and pages.
	 */
	add_theme_support( 'post-thumbnails' );
	
	//Add selective refresh for sidebar widget
	add_theme_support( 'customize-selective-refresh-widgets' );
	
	/*
	 * Make theme available for translation.
	 */
	load_theme_textdomain( 'coffee-tea', get_template_directory() . '/languages' );
		
	// This theme uses wp_nav_menu() in one location.
	register_nav_menus( array(
		'primary-left'  => esc_html__( 'Left Menu', 'coffee-tea' ),
		'primary-right'  => esc_html__( 'Right Menu', 'coffee-tea' ),
		'responsive-menu'  => esc_html__( 'Responsive Menu', 'coffee-tea' ),
	) );

	/*
	 * Switch default core markup for search form, comment form, and comments
	 * to output valid HTML5.
	 */
	add_theme_support( 'html5', array(
		'search-form',
		'comment-form',
		'comment-list',
		'gallery',
		'caption',
	) );
		
	add_theme_support('custom-logo');

	/*
	 * WooCommerce Plugin Support
	 */
	add_theme_support( 'woocommerce' );
	
	// Gutenberg wide images.
	add_theme_support( 'align-wide' );
	
	/*
	 * This theme styles the visual editor to resemble the theme style,
	 * specifically font, colors, icons, and column width.
	 */
	add_editor_style( array( 'assets/css/editor-style.css', coffee_tea_google_font() ) );
	
	//Set up the WordPress core custom background feature.
	add_theme_support( 'custom-background', apply_filters( 'coffee_tea_custom_background_args', array(
		'default-color' => 'ffffff',
		'default-image' => '',
	) ) );

	add_theme_support( 'custom-header', apply_filters( 'coffee_tea_custom_header_args', array(
		'default-image'          => get_template_directory_uri() . '/assets/images/custom-header.png',
		'default-text-color'     => 'ffffff',
		'width'                  => 2000, 
		'height'                 => 200,
		'flex-width'    		 => true,
		'flex-height'    		 => true,
        'uploads'            => true,
	)));


    /*
    * Enable support for Post Formats.
    *
    * See: https://codex.wordpress.org/Post_Formats
    */
    add_theme_support( 'post-formats', array('image','video','gallery','audio',) );


    //  --------------------------------------------- ENQUEUE ----------------------------------------------------- //

    /**
     * Implement the Custom Header feature.
     */
    require_once get_template_directory() . '/inc/custom-header.php';

    /**
     * Demo Import
     */
    require get_parent_theme_file_path( '/demo-import/demo-import-settings.php' );


    if ( ! defined( 'COFFEE_TEA_FREE_THEME_URL' ) ) {
        define( 'COFFEE_TEA_FREE_THEME_URL', 'https://www.seothemesexpert.com/products/free-coffee-wordpress-theme' );
    }
    if ( ! defined( 'COFFEE_TEA_PRO_THEME_URL' ) ) {
        define( 'COFFEE_TEA_PRO_THEME_URL', 'https://www.seothemesexpert.com/products/tea-website-template' );
    }
    if ( ! defined( 'COFFEE_TEA_FREE_DOCS_THEME_URL' ) ) {
        define( 'COFFEE_TEA_FREE_DOCS_THEME_URL', 'https://demo.seothemesexpert.com/documentation/coffee-tea/' );
    }
    if ( ! defined( 'COFFEE_TEA_DEMO_THEME_URL' ) ) {
        define( 'COFFEE_TEA_DEMO_THEME_URL', 'https://demo.seothemesexpert.com/coffee-tea/' );
    }
    if ( ! defined( 'COFFEE_TEA_RATE_THEME_URL' ) ) {
        define( 'COFFEE_TEA_RATE_THEME_URL', 'https://wordpress.org/support/theme/coffee-tea/reviews/#new-post' );
    }
    if ( ! defined( 'COFFEE_TEA_SUPPORT_THEME_URL' ) ) {
        define( 'COFFEE_TEA_SUPPORT_THEME_URL', 'https://wordpress.org/support/theme/coffee-tea/' );
    }
    if ( ! defined( 'COFFEE_TEA_THEME_BUNDLE_URL' ) ) {
        define( 'COFFEE_TEA_THEME_BUNDLE_URL', 'https://www.seothemesexpert.com/products/wordpress-theme-bundle' );
    }
    if ( ! defined( 'COFFEE_TEA_DEMO_IMPORT_URL' ) ) {
    define( 'COFFEE_TEA_DEMO_IMPORT_URL', esc_url( admin_url( 'themes.php?page=coffeetea-wizard' ) ) );
    }
}
endif;
add_action( 'after_setup_theme', 'coffee_tea_setup' );

/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
function coffee_tea_content_width() {
	$GLOBALS['content_width'] = apply_filters( 'coffee_tea_content_width', 1170 );
}
add_action( 'after_setup_theme', 'coffee_tea_content_width', 0 );

/**
 * Register widget area.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 */

function coffee_tea_widgets_init() {
	
	register_sidebar( array(
		'name' => __( 'Sidebar Widget Area', 'coffee-tea' ),
		'id' => 'coffee-tea-sidebar-primary',
		'description' => __( 'The Primary Widget Area', 'coffee-tea' ),
		'before_widget' => '<aside id="%1$s" class="widget %2$s wow fadeInUp">',
		'after_widget' => '</aside>',
		'before_title' => '<h4 class="widget-title">',
		'after_title' => '</h4><div class="title"><span class="shap"></span></div>',
	) );
	
	register_sidebar( array(
		'name' => __( 'Footer Widget Area', 'coffee-tea' ),
		'id' => 'coffee-tea-footer-widget-area',
		'description' => __( 'The Footer Widget Area', 'coffee-tea' ),
		'before_widget' => '<div class="footer-widget col-lg-3 col-sm-6 wow fadeIn" data-wow-delay="0.5s"><aside id="%1$s" class="widget %2$s">',
		'after_widget' => '</aside></div>',
		'before_title' => '<h5 class="widget-title w-title">',
		'after_title' => '</h5><span class="shap"></span>',
	) );
}
add_action( 'widgets_init', 'coffee_tea_widgets_init' );

/**
 * All Styles & Scripts.
 */

require_once get_template_directory() . '/inc/enqueue.php';

/**
 * Nav Walker fo Bootstrap Dropdown Menu.
 */

require_once get_template_directory() . '/inc/class-wp-bootstrap-navwalker.php';

/**
 * Custom template tags for this theme.
 */
require_once get_template_directory() . '/inc/template-tags.php';

/**
 * Custom functions that act independently of the theme templates.
 */
require_once get_template_directory() . '/inc/extras.php';

/**
 * Customizer additions.
 */
require_once get_template_directory() . '/inc/customizer.php';

require_once get_template_directory() . '/wptt-webfont-loader.php';

require_once get_template_directory() . '/inc/fonts.php';

function coffee_tea_sanitize_select( $coffee_tea_input, $coffee_tea_setting ) {
	$coffee_tea_input = sanitize_key( $coffee_tea_input );
	$coffee_tea_choices = $coffee_tea_setting->manager->get_control( $coffee_tea_setting->id )->choices;
	return ( array_key_exists( $coffee_tea_input, $coffee_tea_choices ) ? $coffee_tea_input : $coffee_tea_setting->default );
}

// Sanitize the input
function coffee_tea_sanitize_sidebar_position( $coffee_tea_input ) {
    $coffee_tea_valid = array( 'right', 'left' );

    if ( in_array( $coffee_tea_input, $coffee_tea_valid ) ) {
        return $coffee_tea_input;
    } else {
        return 'right';
    }
}

function coffee_tea_custom_controls() {
	load_template( trailingslashit( get_template_directory() ) . '/inc/customizer/customizer-custom-controls.php' );
}
add_action( 'customize_register', 'coffee_tea_custom_controls' );

add_filter( 'nav_menu_link_attributes', 'coffee_tea_dropdown_data_attribute', 20, 3 );
/**
 * Use namespaced data attribute for Bootstrap's dropdown toggles.
 *
 * @param array    $atts HTML attributes applied to the item's `<a>` element.
 * @param WP_Post  $item The current menu item.
 * @param stdClass $args An object of wp_nav_menu() arguments.
 * @return array
 */
function coffee_tea_dropdown_data_attribute( $atts, $item, $args ) {
    if ( is_a( $args->walker, 'WP_Bootstrap_Navwalker' ) ) {
        if ( array_key_exists( 'data-toggle', $atts ) ) {
            unset( $atts['data-toggle'] );
            $atts['data-bs-toggle'] = 'dropdown';
        }
    }
    return $atts;
}

function coffee_tea_remove_theme_customizer_setting($wp_customize) {
    // Remove the setting
    $wp_customize->remove_setting('display_header_text');
    // Remove the control
    $wp_customize->remove_control('display_header_text');
}
add_action('customize_register', 'coffee_tea_remove_theme_customizer_setting', 20); 
// Use a priority greater than the one used for adding the setting


// Set the number of products per row to 3 on the shop page
add_filter('loop_shop_columns', 'coffee_tea_custom_shop_loop_columns');

if (!function_exists('coffee_tea_custom_shop_loop_columns')) {
    function coffee_tea_custom_shop_loop_columns() {
        // Retrieve the number of columns from theme customizer setting (default: 3)
        $coffee_tea_columns = get_theme_mod('coffee_tea_custom_shop_per_columns', 3);
        return $coffee_tea_columns;
    }
}

// Set the number of products per page on the shop page
add_filter('loop_shop_per_page', 'coffee_tea_custom_shop_per_page', 20);

if (!function_exists('coffee_tea_custom_shop_per_page')) {
    function coffee_tea_custom_shop_per_page($coffee_tea_products_per_page) {
        // Retrieve the number of products per page from theme customizer setting (default: 9)
        $coffee_tea_products_per_page = get_theme_mod('coffee_tea_custom_shop_product_per_page', 9);
        return $coffee_tea_products_per_page;
    }
}

/**
 * Enqueue theme copyright alignment style.
 */
function coffee_tea_copyright_alignment_option() {
    // Get the alignment setting from the theme customizer.
    $coffee_tea_copyright_alignment = get_theme_mod('coffee_tea_copyright_alignment', 'center');

    // Start building the CSS string for the alignment.
    $coffee_tea_copyright_alignment_css = '
        .copyright-text, .footer-copyright, .footer-copyright a, p.copyright-text {
            text-align: ' . esc_attr($coffee_tea_copyright_alignment) . ';
        }
    ';

    // Add the inline style to the theme's main stylesheet.
    wp_add_inline_style('coffee-tea-style', $coffee_tea_copyright_alignment_css);
}

add_action('wp_enqueue_scripts', 'coffee_tea_copyright_alignment_option');

function coffee_tea_fonts_scripts() {
	$coffee_tea_headings_font = esc_html(get_theme_mod('coffee_tea_headings_text'));
	$coffee_tea_body_font = esc_html(get_theme_mod('coffee_tea_body_text'));

	if( $coffee_tea_headings_font ) {
		wp_enqueue_style( 'coffee-tea-headings-fonts', '//fonts.googleapis.com/css?family='. $coffee_tea_headings_font );
	} else {
		wp_enqueue_style( 'coffee-tea-source-sans', '//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic');
	}
	if( $coffee_tea_body_font ) {
		wp_enqueue_style( 'coffee-tea-body-fonts', '//fonts.googleapis.com/css?family='. $coffee_tea_body_font );
	} else {
		wp_enqueue_style( 'coffee-tea-source-body', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,400italic,700,600');
	}
}
add_action( 'wp_enqueue_scripts', 'coffee_tea_fonts_scripts' );

function coffee_tea_customize_css() {
    $coffee_tea_dynamic_color = get_theme_mod( 'coffee_tea_dynamic_color_one', '#38210f' );
    $coffee_tea_custom_css = ":root { --color-primary1: {$coffee_tea_dynamic_color}; }";
    wp_add_inline_style( 'coffee-tea-style', $coffee_tea_custom_css );
}
add_action( 'wp_enqueue_scripts', 'coffee_tea_customize_css' );

// Helper function to get page ID by slug
function get_page_id_by_slug($coffee_tea_slug) {
    $coffee_tea_page = get_page_by_path($coffee_tea_slug); // Get the page by slug
    return $coffee_tea_page ? $coffee_tea_page->ID : 0;   // Return the page ID or 0 if not found
}

add_filter( 'woocommerce_enable_setup_wizard', '__return_false' );

// Show Admin Notice
function coffee_tea_promo_notice() {
    if (get_option('coffee_tea_notice_dismissed')) {
        return;
    }

    if (isset($_GET['page']) && in_array($_GET['page'], ['coffeetea-wizard', 'cafecoffeecharm-wizard'])) {
        return;
    }
    

    $coffee_tea_theme = wp_get_theme();
    $coffee_tea_theme_title = $coffee_tea_theme->get( 'Name' );
    $coffee_tea_theme_version = $coffee_tea_theme->get( 'Version' );

    ?>
    <div class="notice coffee-tea-notice is-dismissible">
        <div>
            <h3>
                <span><?php echo esc_html( '(Version: ' . $coffee_tea_theme_version . ')' ); ?></span><br>
                <?php esc_html_e( 'Thank you for choosing,', 'coffee-tea'); ?>
                <?php echo esc_html( $coffee_tea_theme_title ); ?> <?php esc_html_e( '!!!', 'coffee-tea'); ?>
            </h3>
            <p><?php esc_html_e( 'Welcome! You can now easily start building your website using our beautiful and user-friendly themes. No need to worry about setup — with our one-click demo importer, your site can look just like the demo in minutes. All the tools and information you need to get started are right here!', 'coffee-tea'); ?></p>
            <a class="button button-primary coffee-tea-buy-now" href="<?php echo esc_url( COFFEE_TEA_DEMO_IMPORT_URL ); ?>" target="_blank">
                <?php esc_html_e( 'One Click Demo Import', 'coffee-tea') ?>
            </a>
            <a class="button button-primary coffee-tea-bundle-button" target="_blank" href="<?php echo esc_url( COFFEE_TEA_THEME_BUNDLE_URL ); ?>">
                <?php echo esc_html__( 'Get All 50+ Themes @ $79', 'coffee-tea' ); ?>
            </a>
        </div>
        <div class="coffee-tea-image-wrap">
            <img src="<?php echo esc_url(get_stylesheet_directory_uri() . '/screenshot.png'); ?>">
        </div>
        <canvas id="coffee-tea-notice-confetti"></canvas>
    </div>
    <?php
}
add_action('admin_notices', 'coffee_tea_promo_notice');

add_action('wp_ajax_coffee_tea_dismiss_notice', 'coffee_tea_dismiss_notice');
function coffee_tea_dismiss_notice() {
    update_option('coffee_tea_notice_dismissed', true);
    wp_send_json_success();
}

add_action('after_switch_theme', 'coffee_tea_reset_notice_on_activation');
function coffee_tea_reset_notice_on_activation() {
    delete_option('coffee_tea_notice_dismissed');
}

function coffee_tea_enqueue_admin_assets() {
    wp_enqueue_script(
        'coffee-tea-confetti',
        get_template_directory_uri() . '/demo-import/assets/js/confetti/confetti.min.js',
        ['jquery'],
        null,
        true
    );

    wp_enqueue_script(
        'coffee-tea-notice-confetti-js',
        get_template_directory_uri() . '/demo-import/assets/js/plugin-update-notice.js',
        ['coffee-tea-confetti'],
        null,
        true
    );

    wp_enqueue_script(
        'coffee-tea-notice-dismiss',
        get_template_directory_uri() . '/demo-import/assets/js/notice-dismiss.js',
        ['jquery'],
        null,
        true
    );
}
add_action('admin_enqueue_scripts', 'coffee_tea_enqueue_admin_assets');