Creating childtheme - topic about include folder
Creating childtheme - topic about include folder
I found topic of Samcy user with dubya
http://forums.appthemes.com/creating-childtheme-30439/
there is also option to using get_template_par
For example when using header.php in our classipress_child/header.php
We can change comment original include to own
<?php // include_once( TEMPLATEPATH . '/includes/theme-searchbar.php' ); ?>
<?php get_template_part('theme-searchbar'); ?>
of coure theme-searchbar.php now is located in our childtheme directory
I hope that solution is not bad.