/*
Theme Name:   CleanMate Child
Theme URI: https://1.envato.market/cleanmate-cleaning-company-maid-gardening-wordpress-theme
Description:  CleanMate Child Theme
Author: QuanticaLabs
Author URI: https://1.envato.market/quanticalabs
Template:     cleanmate
Version:      1.2
Text Domain:  cleanmate
*/

add_filter('template_include', function ($template) {

    if (is_page()) {
        $new_template = locate_template(array('page.php', 'index.php'));
        if (!empty($new_template)) {
            return $new_template;
        }
    }

    return $template;
});
