File "functions.php"

Full Path: /home/jlklyejr/public_html/wp-content-20241030122153/themes/goya-child/functions.php
File size: 469 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Goya functions and definitions.
 *
 * @link    https://developer.wordpress.org/themes/basics/theme-functions/
 *
 * @package Goya Child
 */

function goya_child_enqueue_styles() {
	wp_enqueue_style( 'goya-style' , get_template_directory_uri() . '/style.css' );
	wp_enqueue_style( 'goya-child-style',
		get_stylesheet_directory_uri() . '/style.css',
		array( 'goya-style' ),
		1.1
	);
}

add_action(  'wp_enqueue_scripts', 'goya_child_enqueue_styles', 99 );