![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/intellicart.co/wp-content/themes/framey-child/ |
<?php /** * Child Theme functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package UiCore */ defined('ABSPATH') || exit; add_action( 'wp_enqueue_scripts', 'ui_child_enqueue_styles' ); function ui_child_enqueue_styles() { if (!class_exists('\UiCore\Core')){ wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css' ); } /* YOU CAN START EDITING HERE! */ /* * a list of complete hooks and filters can be found here * https://help.uicore.co/docs/hooks-and-filters * */