Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/f3572f85bf6b6be2f059572170f4ca7b to your computer and use it in GitHub Desktop.
Save spivurno/f3572f85bf6b6be2f059572170f4ca7b to your computer and use it in GitHub Desktop.
<?php
// Update "123" to your child form ID and "4" to the child File Upload field ID.
add_filter( 'gpnf_display_value_123_4', function( $value, $field, $form, $entry ) {
$value['label'] = sprintf( '<img src="%s">', $value['value'] );
return $value;
}, 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment