Answers for "child themes"

PHP
0

how to add files in child theme in theme editor

add_action('after_setup_theme', function() {
	$file = get_stylesheet_directory() . '/my-file.php';
	touch($file);
});
Posted by: Guest on October-28-2020

Browse Popular Code Answers by Language