<?php
/**
 * GeneratePress child theme functions and definitions.
 */

// DEBUG CHECK
add_action('wp_head', 'ustax_child_theme_check');
function ustax_child_theme_check() {
    echo '<!-- CHILD-THEME-LOADED -->';
}

