Skip to content

Instantly share code, notes, and snippets.

@thetwopct
Created December 22, 2018 05:53
Show Gist options
  • Save thetwopct/43e23d35cc7b6a37225214e8f2c29c52 to your computer and use it in GitHub Desktop.
Save thetwopct/43e23d35cc7b6a37225214e8f2c29c52 to your computer and use it in GitHub Desktop.
If get_field exists for displaying custom fields (ACF)
<?php if (get_field('custom-field') != NULL) : ?>
<p>This is my value: <?php the_field('custom-field'); ?></p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment