Skip to content

Instantly share code, notes, and snippets.

@nszumowski
Created September 20, 2017 19:45
Show Gist options
  • Select an option

  • Save nszumowski/80fcb72ae667f7397765eac57c0b552e to your computer and use it in GitHub Desktop.

Select an option

Save nszumowski/80fcb72ae667f7397765eac57c0b552e to your computer and use it in GitHub Desktop.
Before Header Content hook for GeneratePress
<?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