HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/delstar/wp-content/themes/construction/functions.php
<?php
/**
 * wpcharming functions and definitions
 *
 * @package WPCharming
 */

/**
 * Define theme constants
 */
$theme_data   = wp_get_theme();
if ( $theme_data->exists() ) {
	define( 'WPC_THEME_NAME', $theme_data->get( 'Name' ) );
	define( 'WPC_THEME_VERSION', $theme_data->get( 'Version' ) );
}

/**
 * Set the content width based on the theme's design and stylesheet.
 */
if ( ! isset( $content_width ) ) {
	$content_width = 800; /* pixels */
}

if ( ! function_exists( 'wpcharming_setup' ) ) :
/**
 * Sets up theme defaults and registers support for various WordPress features.
 *
 * Note that this function is hooked into the after_setup_theme hook, which
 * runs before the init hook. The init hook is too late for some features, such
 * as indicating support for post thumbnails.
 */
function wpcharming_setup() {

	/*
	 * Make theme available for translation.
	 * Translations can be filed in the /languages/ directory.
	 * If you're building a theme based on WPCharming, use a find and replace
	 * to change 'wpcharming' to the name of your theme in all the template files
	 */
	load_theme_textdomain( 'wpcharming', get_template_directory() . '/languages' );

	// Add default posts and comments RSS feed links to head.
	add_theme_support( 'automatic-feed-links' );

	// Use shortcodes in text widgets.
	add_filter( 'widget_text', 'do_shortcode' );

	/*
	 * Let WordPress manage the document title.
	 * By adding theme support, we declare that this theme does not use a
	 * hard-coded <title> tag in the document head, and expect WordPress to
	 * provide it for us.
	 */
	add_theme_support( 'title-tag' );

	/*
	 * Enable support for Post Thumbnails on posts and pages.
	 *
	 * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
	 */
	add_theme_support( 'post-thumbnails' );
	add_theme_support( 'title-tag' );
	add_image_size( 'small-thumb', 400, 200, true );
	add_image_size( 'medium-thumb', 600, 300, true );
	add_image_size( 'blog-large', 800, 400, true );

	// This theme uses wp_nav_menu() in one location.
	register_nav_menus( array(
		'primary' => __( 'Primary', 'wpcharming' ),
		'footer' => __( 'Footer', 'wpcharming' ),
		//'footer' => __( 'Footer Bottom Right', 'wpcharming' ),
	) );

	// This theme styles the visual editor to resemble the theme style.
	add_editor_style( 'assets/css/editor-style.css' );

	/*
	 * 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( 'wc-product-gallery-zoom' );
    add_theme_support( 'wc-product-gallery-lightbox' );
    add_theme_support( 'wc-product-gallery-slider' );


	/*
	 * Enable excerpt for page by default.
	 * See https://codex.wordpress.org/Function_Reference/add_post_type_support
	 */
    add_post_type_support('page', 'excerpt');
    

    // Adding support for core block visual styles.
    add_theme_support( 'wp-block-styles' );

    // Add support for full and wide align images.
    add_theme_support( 'align-wide' );
    
    // Add support for responsive embeds.
    add_theme_support( 'responsive-embeds' );

}
endif; // wpcharming_setup
add_action( 'after_setup_theme', 'wpcharming_setup' );

/**
 * Register widget area.
 *
 * @link http://codex.wordpress.org/Function_Reference/register_sidebar
 */
function wpcharming_widgets_init() {
	global $woocommerce;
	global $wpc_option;
	
	register_sidebar( array(
		'name'          => __( 'Blog Sidebar', 'wpcharming' ),
		'id'            => 'sidebar-1',
		'description'   => '',
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h4 class="widget-title">',
		'after_title'   => '</h4>',
	) );
	register_sidebar( array(
		'name'          => __( 'Page Sidebar', 'wpcharming' ),
		'id'            => 'sidebar-2',
		'description'   => '',
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h4 class="widget-title">',
		'after_title'   => '</h4>',
	) );

	if ( $woocommerce ) {
		register_sidebar( array(
			'name'          => __( 'WooCommerce Sidebar', 'wpcharming' ),
			'id'            => 'sidebar-woo',
			'description'   => '',
			'before_widget' => '<aside id="%1$s" class="widget %2$s">',
			'after_widget'  => '</aside>',
			'before_title'  => '<h4 class="widget-title">',
			'after_title'   => '</h4>',
		) );
	}
	
	
	register_sidebar( array(
		'name'          => __( 'Footer 1', 'wpcharming' ),
		'id'            => 'footer-1',
		'description'   => wpcharming_sidebar_desc( 'footer-1' ),
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 2', 'wpcharming' ),
		'id'            => 'footer-2',
		'description'   => wpcharming_sidebar_desc( 'footer-2' ),
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 3', 'wpcharming' ),
		'id'            => 'footer-3',
		'description'   => wpcharming_sidebar_desc( 'footer-3' ),
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );
	register_sidebar( array(
		'name'          => __( 'Footer 4', 'wpcharming' ),
		'id'            => 'footer-4',
		'description'   => wpcharming_sidebar_desc( 'footer-4' ),
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );
	

	register_sidebar( array(
		'name'          => __( 'Top Bar Left', 'wpcharming' ),
		'id'            => 'topbar-left',
		'description'   => wpcharming_topbar_desc( 'topbar-left' ),
		'before_widget' => '<aside class="topbar-widget widget %2$s">',
		'after_widget'  => '</aside>',
		//'before_title'  => '<h3 class="widget-title">',
		//'after_title'   => '</h3>',
	) );
	register_sidebar( array(
		'name'          => __( 'Top Bar Right', 'wpcharming' ),
		'id'            => 'topbar-right',
		'description'   => wpcharming_topbar_desc( 'topbar-right' ),
		'before_widget' => '<aside class="topbar-widget widget %2$s">',
		'after_widget'  => '</aside>',
		//'before_title'  => '<h3 class="widget-title">',
		//'after_title'   => '</h3>',
	) );
}
add_action( 'widgets_init', 'wpcharming_widgets_init' );

/**
 * Enqueue scripts and styles.
 */
function wpcharming_scripts() {
	global $wpc_option;
	//https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css
	// Stylesheet
	wp_enqueue_style( 'wpcharming-style', get_stylesheet_uri() );
	//wp_enqueue_style( 'wpcharming-fontawesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css', array(), '4.2.0' );
	wp_enqueue_style( 'wpcharming-fontawesome', get_template_directory_uri() .'/assets/css/all.min.css', array(), '6.5.1' );
	if ( is_rtl() ){
		wp_enqueue_style( 'wpcharming-rtl', get_template_directory_uri() .'/rtl.css', array(), '4.2.0' );
	}


	// jQuery
	wp_enqueue_script( 'jquery' );
	wp_enqueue_script( 'wpcharming-modernizr', get_template_directory_uri() . '/assets/js/modernizr.min.js', array(), '2.6.2', false );
	wp_enqueue_script( 'wpcharming-libs', get_template_directory_uri() . '/assets/js/libs.js', array(), '', false );
	wp_enqueue_script( 'wpcharming-theme', get_template_directory_uri() . '/assets/js/theme.js', array(), '', true );
	
	// Js vars from settings
	if ( isset($wpc_option['header_fixed']) ) {
		$is_fixed_header = array('fixed_header' => $wpc_option['header_fixed']);
		wp_localize_script('wpcharming-theme','header_fixed_setting', $is_fixed_header);
	}
	
	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
}
add_action( 'wp_enqueue_scripts', 'wpcharming_scripts' );

/**
 * Theme Options
 */
if ( !isset( $redux_demo ) ) {
	require_once( dirname( __FILE__ ) . '/inc/options-config.php' );
}

/**
 * Move Visual Composer stylesheet file to the top.
 */
function move_vc_css() {
	wp_enqueue_style( 'js_composer_front' );
}


/**
 * Load VC addons if Visual Compressor is installed.
 */
if ( class_exists('WPBakeryVisualComposerAbstract') ) {
	vc_set_as_theme( $disable_updater = true );
	require get_template_directory() . '/inc/vc_mods/vc_mods.php';
	require get_template_directory() . '/inc/vc_mods/vc_general_elements.php';
	require get_template_directory() . '/inc/vc_mods/vc_special_elements.php';
	$vc_template_dir =  get_template_directory() . '/inc/vc_mods/vc_templates';
	vc_set_shortcodes_templates_dir( $vc_template_dir );
	add_action( 'wp_enqueue_scripts', 'move_vc_css', 1 );
}

/**
 * Remove VC Teaser on page/post editor screen.
 */
function remove_vc_teaser() {
	remove_meta_box( 'vc_teaser' , 'page' , 'normal' );
	remove_meta_box( 'vc_teaser' , 'post' , 'normal' );
}
add_action( 'admin_menu' , 'remove_vc_teaser' );

/**
 * Recomend plugins via TGM activation class
 */
require get_template_directory() . '/inc/tgm/plugin-activation.php';

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

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

/**
 * Load custom metaboxes and fields.
 */
require get_template_directory() . '/inc/meta/usage.php';

/**
 * Load custom theme widget.
 */
require get_template_directory() . '/inc/widgets/wpc_posts.php';

/**
 * The theme fully support WooCommerce, Awesome huh?.
 */
add_theme_support( 'woocommerce' );
require get_template_directory() . '/inc/woo-config.php';



if ( version_compare(PHP_VERSION, '5.4.0') >= 0 ) {
	/**
	 * Elementor items
	 */
	require get_template_directory() . '/inc/elementors.php';
}