Created
September 20, 2017 19:45
-
-
Save nszumowski/80fcb72ae667f7397765eac57c0b552e to your computer and use it in GitHub Desktop.
Before Header Content hook for GeneratePress
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
| <?php if(is_home() || is_page('home')) { ?> | |
| <div class="site-logo"> | |
| <a href="http://www.bizconvt.com/" title="BizCon VT" rel="home"> | |
| <img class="header-image" src="http://www.bizconvt.com/wp-content/uploads/2017/09/BizCon-logo-white_green-150x64.png" alt="BizCon VT" title="BizCon VT"> | |
| </a> | |
| </div> | |
| <?php } else { ?> | |
| <div class="site-logo"> | |
| <a href="http://www.bizconvt.com/" title="BizCon VT" rel="home"> | |
| <img class="header-image" src="http://www.bizconvt.com/wp-content/uploads/2017/09/BizCon-logo-150x64.png" alt="BizCon VT" title="BizCon VT"> | |
| </a> | |
| </div> | |
| <?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment