Last active
August 29, 2015 14:05
-
-
Save zachskaggs/5eb3e87ee864806fbb5d to your computer and use it in GitHub Desktop.
Change email user values title Ninja Forms.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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