Skip to content

Instantly share code, notes, and snippets.

@zachskaggs
Last active August 29, 2015 14:05
Show Gist options
  • Save zachskaggs/5eb3e87ee864806fbb5d to your computer and use it in GitHub Desktop.
Save zachskaggs/5eb3e87ee864806fbb5d to your computer and use it in GitHub Desktop.
Change email user values title Ninja Forms.
<?php
function nf_change_admin_email_title( $title ) {
global $ninja_forms_processing;
if ( 1 == $ninja_forms_processing->get_form_ID() ) {
$title = 'Here is some stuff';
}
return $title;
}
add_filter( 'nf_email_user_values_title', 'nf_change_admin_email_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment