August 22, 2013 at 8:07 pm
#3501
shawnhoffman
Participant
So, I am learning about child themes – and I See to add:
require_once( get_stylesheet_directory() . '/my_included_file.php' );
To the style.css of the child theme.
In this case, it will be page-template-business2.php, attitude_widgets.php, & content-extensions.php
Do I need to put them in the corresponding subdirectories, or just into the theme directory.
i.e. do the files need to be
/attitude-child/page-template-business2.php
/attitude-child/library/widgets/attitude_widgets.php
/attitude-child/library/structure/content-extensions.php
or simply
/attitude-child/page-template-business2.php
/attitude-child/attitude_widgets.php
/attitude-child/content-extensions.php
Thanks!