moxdev
1/15/2017 - 4:45 PM

For showing the on page title function in WordPress if it exists.

For showing the on page title function in WordPress if it exists.

<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 -->