bp_core_email_from_name_filter
Set "From" name in outgoing email to the site name.
Description
(string) bp_core_email_from_name_filter();
Returns (string)
The blog name for the root blog.
Usage
if ( !function_exists( 'bp_core_email_from_name_filter' ) ) { require_once ABSPATH . PLUGINDIR . 'buddypress/bp-core/deprecated/2.5.php'; } // NOTICE! Understand what this does before running. $result = bp_core_email_from_name_filter();
Defined (1)
The function is defined in the following location(s).
- /bp-core/deprecated/2.5.php
- function bp_core_email_from_name_filter() {
- _deprecated_function( __FUNCTION__, '2.5' );
- /**
- * Filters the "From" name in outgoing email to the site name.
- *
- * @since 1.2.0
- * @deprecated 2.5.0 Not used.
- *
- * @param string $value Value to set the "From" name to.
- */
- }