Ok so this is the code in the content.php file under function livingos_header_logo(). I have never created a child theme before. What do you mean by using the filter livingos_header_logo? Couldn’t I just change the href=”‘.home_url(‘/’).'” to my desired url? I am a beginner, patience is appreciated!
//header: logo
if ( !function_exists(‘livingos_header_logo’) ) {
function livingos_header_logo() {
//get theme options
$options = get_option( ‘livingos_theme_options’ );
$content = “”;
//logo
if ( $options[‘logos’] != “none” && isset( $options[‘logos’] ) ) {
$content .= “\n\t\t”;
$content .= ”;
$content .= “\n\t\t\t”;
$content .= ‘‘;
$content .= “\n\t\t”;
$content .= ‘‘;
$content .= “\n”;
} elseif ( $options[‘custom_logo’] != “” ) {
$content .= “\n\t\t”;
$content .= ”;
$content .= “\n\t\t\t”;
$content .= ‘‘;
$content .= “\n\t\t”;
$content .= ‘‘;
$content .= “\n”;
}
echo apply_filters( ‘livingos_header_logo’, $content );