Last active
March 21, 2017 19:28
-
-
Save moxdev/35e55e832af7e0274faf3ab27df9d8dd to your computer and use it in GitHub Desktop.
For showing the on page title function in WordPress if it exists.
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
<header class="entry-header"> | |
<?php if ( get_field( 'on_page_title' )){ | |
echo '<h1 class="entry-title">' . get_field( 'on_page_title' ) . '</h1>'; | |
} else { | |
the_title( '<h1 class="entry-title">', '</h1>' ); | |
} ?> | |
</header><!-- .entry-header --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment