File "functions.php"
Full path: /home/dustinhy/prositehelp.com/wp-content/themes/psh-theme/functions.php
File
size: 584 B (584 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
/**
* Pro Site Help Theme functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Pro Site Help
* @since 1.0.0
*/
/**
* Define Constants
*/
define( 'CHILD_THEME_PRO_SITE_HELP_VERSION', '1.0.0' );
/**
* Enqueue styles
*/
function child_enqueue_styles() {
wp_enqueue_style( 'pro-site-help-theme-css', get_stylesheet_directory_uri() . '/style.css', array('astra-theme-css'), CHILD_THEME_PRO_SITE_HELP_VERSION, 'all' );
}
add_action( 'wp_enqueue_scripts', 'child_enqueue_styles', 15 );