Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created February 2, 2018 04:00
Show Gist options
  • Save jbd91/83458b16f6914db9d6d2917a9d8a4e0b to your computer and use it in GitHub Desktop.
Save jbd91/83458b16f6914db9d6d2917a9d8a4e0b to your computer and use it in GitHub Desktop.
ACF Custom Title
<h1>
<?php if( get_field('custom_title') ): ?>
<?php the_field('custom_title'); ?>
<?php else: ?>
<?php the_title(); ?>
<?php endif; ?>
</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment