Last active
September 10, 2018 16:59
-
-
Save ChAsadUrRehman/71f2a700547b2ea0e52f0491c1130a66 to your computer and use it in GitHub Desktop.
Find this code in header.php file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="logo_container"> | |
| <span class="logo_helper"></span> | |
| <a href="<?php echo esc_url( home_url( '/' ) ); ?>"> | |
| <img src="<?php echo esc_attr( $logo ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" id="logo" data-height-percentage="<?php echo esc_attr( et_get_option( 'logo_height', '54' ) ); ?>" /> | |
| </a> | |
| </div> | |
| from above block of code rplace | |
| <a href="<?php echo esc_url( home_url( '/' ) ); ?>"> | |
| with | |
| <a href="https://www.target-link.com"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment