Created
March 29, 2016 10:08
-
-
Save alessandrotesoro/52a4ed3086b47758ed0d to your computer and use it in GitHub Desktop.
WPUM Email tag
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
function wpum_add_sample_email_tag( $user_id ) { | |
wpum_add_email_tag( 'admin_email', 'This tag can be used to output the admin email', 'wpum_site_get_admin_email' ); | |
} | |
add_action( 'wpum_add_email_tags', 'wpum_add_sample_email_tag' ); | |
function wpum_site_get_admin_email() { | |
return get_bloginfo( 'admin_email' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment