Skip to content

Instantly share code, notes, and snippets.

@kstover
Last active September 18, 2015 17:07
Show Gist options
  • Save kstover/8eb5aa7b0b0fee24cf0b to your computer and use it in GitHub Desktop.
Save kstover/8eb5aa7b0b0fee24cf0b to your computer and use it in GitHub Desktop.
<?php
function ninja_forms_custom_display( $before_fields, $form_id ) {
// Output text received from the database before our field output.
$text = get_stuff_from_somewhere_else( $form_id );
$before_fields .= '<h4>'. $text . '</h4>';
return $before_fields;
}
add_filter( 'nf_frontend_before_form', 'ninja_forms_custom_display', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment