Created
April 26, 2015 01:40
-
-
Save carolinan/a41351b0ec745bace35c to your computer and use it in GitHub Desktop.
header on posts and pages
This file contains 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
else if (is_single() || is_page()) { | |
?> | |
<header id="masthead" role="banner"> | |
<?php if (display_header_text() ) { ?> | |
<div class="site-title" style="text-align:center; margin-top:130px;"><a href="<?php echo esc_url( home_url('/') ); ?>" style="text-decoration:none;"><?php bloginfo( 'name' ); ?></a></div> | |
<?php } | |
?> | |
</header><!-- #masthead --> | |
<?php | |
} ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment