Change pagetitle into image Hatch theme
-
Hi there,
I’m using the hatch theme for my website. I want to change the page title for an image (logo), but I can’t figure out how to do this.
I found this code in the functions.php, but havn’t got a clue what to change?function hatch_site_title() { if ( hybrid_get_setting( 'hatch_logo_url' ) ) { $tag = ( is_front_page() ) ? 'h1' : 'div'; echo '<' . $tag . ' id="site-title">' . "\n"; echo '<a href="' . get_home_url() . '" title="' . get_bloginfo( 'name' ) . '" rel="Home">' . "\n"; echo '<img class="logo" src="' . esc_url( hybrid_get_setting( 'hatch_logo_url' ) ) . '" alt="' . get_bloginfo( 'name' ) . '" />' . "\n"; echo '</a>' . "\n"; echo '</' . $tag . '>' . "\n"; } else { hybrid_site_title();
Does anyone know?
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Change pagetitle into image Hatch theme’ is closed to new replies.