Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
test
/
wp-content
/
themes
/
goya-child
:
functions.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 );