bp_email_post_type
Post types and taxonomies ****************************************.
Description
Parameters (1)
- 0. $bp_email (string) =>
'bp-email'
- The bp email.
Usage
- To run the hook, copy the example below.
- $bp_email = apply_filters( 'bp_email_post_type', $bp_email );
- if ( !empty( $bp_email ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_email_post_type callback
- function filter_bp_email_post_type( $bp_email ) {
- // make filter magic happen here...
- return $bp_email;
- };
- // add the filter
- add_filter( 'bp_email_post_type', 'filter_bp_email_post_type', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_email_post_type', 'filter_bp_email_post_type', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /class-buddypress.php
- $this->email_post_type = apply_filters( 'bp_email_post_type', 'bp-email' );