![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/matelopsrp.com/wp-content/themes/vip-business-dark/ |
<?php /** * Child Theme functions and definitions. * This theme is a child theme for Vip Business. * * @package Vip_Business_Dark * @author FireflyThemes https://fireflythemes.com * @license http://www.gnu.org/licenses/gpl-3.0.html GNU Public License * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. */ /** * Theme functions and definitions. */ function vip_business_dark_enqueue_styles() { // Parent Theme stylesheet. wp_enqueue_style( 'vip-business-style', get_template_directory_uri() . '/style.css', null, vip_business_get_file_mod_date( get_template_directory() . '/style.css' ) ); wp_enqueue_style( 'vip-business-dark-style', get_stylesheet_directory_uri() . '/style.css', array( 'vip-business-style' ), vip_business_get_file_mod_date( get_stylesheet_directory() . '/style.css' ) ); } add_action( 'wp_enqueue_scripts', 'vip_business_dark_enqueue_styles' ); /** * Loads the child theme textdomain. */ function vip_business_dark_setup() { load_child_theme_textdomain( 'vip-business-dark', get_stylesheet_directory() . '/languages' ); } add_action( 'after_setup_theme', 'vip_business_dark_setup', 11 );