This topic is very important to child theme users that override template files, like header.php, footer.php etc.
Until I find a better method, I’m going to post here the changes I make to template files, so you can update your child theme templates.
12. Aug (Mystique 3.0.5):
footer.php: added <?php Atom::end(); ?>
before </body>
19. Dec (Mystique 3.2):
All templates files – change all instances of:
<?php get_header(); ?>
with
<?php atom()->template('header'); ?>
and
<?php get_sidebar(); ?>
with
<?php atom()->template('sidebar'); ?>
and
<?php get_footer(); ?>
with
<?php atom()->template('footer'); ?>
20. Dec (Mystique 3.2.2):
All template files – Replace all$app
variable definitions with this function:
atom()