All Titles and Menus changed to “CHILD THEME LOADED”

The UUA Theme offers a starter child theme which consists of an example style.css file and functions.php file. These files include a few lines of code to test if the child theme is loading correctly.

You need to delete this test code from both files, which is identified in code comments.

Specifically, this code in functions.php:

/**
 * Below is a test to confirm the parent theme is being overridden by the child.
 * If your page titles say, "Child Theme Loaded," the child theme is working.
 * After you confirm it's working, delete this function and filter.
 */
function uuatheme_title() {
    return "Child Theme Loaded";
}
add_filter( 'the_title', 'uuatheme_title' );

And this code in style.css:

/**
 * Below is a test to confirm this stylesheet is being applied.
 * It turns all text to all caps. DELETE this after confirmation.
 */
body {
    text-transform: uppercase !important;
}