Wordpress - Theme Structure and Basics
Given this child theme
What will be the result on the website?
functions.php snippet:<?php
function child_enqueue() {
wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');
wp_enqueue_style('child-style', get_stylesheet_uri(), ['parent-style']);
}
add_action('wp_enqueue_scripts', 'child_enqueue');What will be the result on the website?
