Skip to content

Instantly share code, notes, and snippets.

@kstover
Created September 18, 2015 16:43
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 kstover/98f7fd83b8420b7dcd2f to your computer and use it in GitHub Desktop.
Save kstover/98f7fd83b8420b7dcd2f to your computer and use it in GitHub Desktop.
<?php
function ninja_forms_custom_display( $form_id ) {
// Output text received from the database before our field output.
$text = get_stuff_from_somewhere_else( $form_id );
echo '<h4>'. $text . '</h4>';
}
add_action( 'ninja_forms_display_before_form', 'ninja_forms_custom_display' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment