First, create a child theme and then in your functions.php
, create a new catchkathmandu_footer_content()
function like this:
<?php
function catchkathmandu_footer_content() {
echo "I like pie.";
}
?>
Obviously, replace the pie line with whatever you'd like to display in the footer.