I want to create a website in wordpress, for this I take a theme and create a child theme.
I copy in the folder of the child a style.css and header.php, because I w
Add to functions.php:
functions.php
// create a URL to the child theme function get_template_directory_child() { $directory_template = get_template_directory_uri(); $directory_child = str_replace('storefront', '', $directory_template) . 'child-storefront'; return $directory_child; }