HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/public_html/wp-content/themes/space-exploration/functions.php
<?php
/**
 * Space Exploration functions and definitions
 *
 * @package Space Exploration
 */

if ( ! function_exists( 'space_exploration_setup' ) ) :
function space_exploration_setup() {
	
	if ( ! isset( $content_width ) )
		$content_width = 640; /* pixels */

    load_theme_textdomain( 'space-exploration', get_template_directory() . '/languages' );
    
	add_theme_support( 'post-thumbnails' );
	add_theme_support( 'title-tag' );
	add_theme_support( 'custom-logo', array(
		'height'      => 240,
		'width'       => 240,
		'flex-height' => true,
	) );
	
	add_theme_support( 'custom-background', array(
		'default-color' => 'ffffff'
	) );
	
	// Add support for Block Styles.
	add_theme_support( 'wp-block-styles' );

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

    add_theme_support('woocommerce');

	// Enqueue editor styles.
	add_editor_style( array( 'assets/css/editor-style.css' ) );

	if (! defined('SPACE_EXPLORATION_VERSION')) {
		// Replace the version number of the theme on each release.
		define('SPACE_EXPLORATION_VERSION', wp_get_theme()->get('Version'));
	}

	require get_parent_theme_file_path( '/inc/dashboard/dashboard.php' );

    require get_parent_theme_file_path( '/inc/customizer/customizer.php' );
	
}
endif; // space_exploration_setup
add_action( 'after_setup_theme', 'space_exploration_setup' );

function space_exploration_scripts() {
    wp_enqueue_style( 'space-exploration-basic-style', get_stylesheet_uri() );

	wp_enqueue_script( 'space-exploration-wow-js', get_theme_file_uri( '/assets/js/wow.js' ), array( 'jquery' ), true );

	wp_enqueue_style( 'space-exploration-animate-css', get_template_directory_uri().'/assets/css/animate.css' );

    //font-awesome
	wp_enqueue_style( 'space-exploration-fontawesome', get_template_directory_uri() . '/assets/font-awesome/css/all.css', array(), '6.7.0' );

    wp_style_add_data( 'space-exploration-basic-style', 'rtl', 'replace' );

    //homepage slider
	wp_enqueue_style( 'space-exploration-owl.carousel-style', get_template_directory_uri().'/assets/css/owl.carousel.css', array(), SPACE_EXPLORATION_VERSION );
	wp_enqueue_script( 'space-exploration-owl.carousel-js', get_template_directory_uri(). '/assets/js/owl.carousel.js', array('jquery') ,SPACE_EXPLORATION_VERSION,true);

	// script.js
	wp_enqueue_script('space-exploration-main-script', get_template_directory_uri() . '/assets/js/script.js', array('jquery'), SPACE_EXPLORATION_VERSION, true);

}
add_action( 'wp_enqueue_scripts', 'space_exploration_scripts' );

function space_exploration_enqueue_admin_script($hook) {
    // Enqueue admin JS for notices
    wp_enqueue_script('space-exploration-welcome-notice', get_template_directory_uri() . '/inc/dashboard/space-exploration-welcome-notice.js', array('jquery'), '', true);
    
    // Localize script to pass data to JavaScript
    wp_localize_script('space-exploration-welcome-notice', 'space_exploration_localize', array(
        'ajax_url' => admin_url('admin-ajax.php'),
        'nonce' => wp_create_nonce('space_exploration_welcome_nonce'),
        'dismiss_nonce' => wp_create_nonce('space_exploration_welcome_nonce'), // Nonce for dismissal
        'redirect_url' => admin_url('themes.php?page=space-exploration-guide-page')
    ));
}
add_action('admin_enqueue_scripts', 'space_exploration_enqueue_admin_script');

function space_exploration_admin_theme_style() {
   wp_enqueue_style('space-exploration-custom-admin-style', esc_url(get_template_directory_uri()) . '/inc/dashboard/dashboard.css');
}
add_action('admin_enqueue_scripts', 'space_exploration_admin_theme_style');

// Block Patterns.
require get_template_directory() . '/block-patterns.php';
require get_template_directory() . '/custom-setting.php';
require_once get_template_directory() . '/inc/dashboard/welcome-notice.php';
require get_template_directory() .'/inc/TGM/tgm.php';