Display a custom field on a production page
-
I’ve looked through this support forum and this problem has been mentioned but no real answers to what I need.
I’ve added my custom field (certificate) to the production admin page using Advanced Custom Fields (ACF). I want to display that field on the production page where the events for that production are listed.
Normally I would do this within a page template using the code below:
$value = get_field( "certificate" ); if( $value ) { echo $value; } else { echo 'nothing here'; }
For this plugin I have no idea where I would add this? Any ideas?
- The topic ‘Display a custom field on a production page’ is closed to new replies.