I am wondering how to go about this without hacking the parent theme. I have created a child theme, and I am considering implementing the gk_blog_logo() in my child themes functions.php and making a condition there that ensures the right image is shown.
But it doesn't seem that the Fest theme supports this? The function should be wrapped like this to support this functionality if I am not mistaken:
- Code: Select all
if ( ! function_exists( 'theme_special_nav' ) ) {
function theme_special_nav() {
// Do something.
}
}
What would you suggest?