lots0logs
5/10/2016 - 9:26 PM

WordPress :: Divi Builder :: Contact Module :: Customize Email Subject

WordPress :: Divi Builder :: Contact Module :: Customize Email Subject

<?php
/* DON'T copy the first line (above) if your functions.php already has it. 
 * ---------------------------------------------------------------------- */
 
function et_get_safe_localization( $string ) {
	if ( false !== strpos( $string, 'New Message From ' ) ) {
		
		return 'YOUR CUSTOM EMAIL SUBJECT';
	
	}
	return wp_kses( $string, et_get_allowed_localization_html_elements() );
}