| Server IP : 103.191.208.88 / Your IP : 216.73.216.44 Web Server : Microsoft-IIS/10.0 System : Windows NT COSMIC 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_1831(willswel_) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Inetpub/vhosts/willswell.com/httpdocs/wp-content/themes/goldy-studio/ |
Upload File : |
<?php
/**
* goldy studio functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package goldy studio
*/
if ( ! defined( '_GOLDY_Studio_VERSION' ) ) {
// Replace the version number of the theme on each release.
define( '_GOLDY_Studio_VERSION', '1.0.0' );
}
function goldy_Studio_wpdocs_setup_theme() {
add_theme_support( 'title-tag' );
add_theme_support( 'automatic-feed-links' );
}
add_action( 'after_setup_theme', 'goldy_Studio_wpdocs_setup_theme' );
/* enqueue script for parent theme stylesheeet */
function goldy_Studio_childtheme_parent_styles() {
// enqueue style
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'goldy-Studio' ) );
}
add_action( 'wp_enqueue_scripts', 'goldy_Studio_childtheme_parent_styles');
require get_stylesheet_directory() . '/inc/init-variable.php';
require get_stylesheet_directory() . '/inc/init-hook.php';