bp_register_email_post_type
The BuddyPress bp register email post type hook.
Description
Parameters (1)
- 0. $array — Optional. (callback) =>
array( 'description' => _x( 'BuddyPress emails', 'email post type description', 'buddypress' ), 'labels' => bp_get_email_post_type_labels(), 'menu_icon' => 'dashicons-email', 'public' => false, 'publicly_queryable' => bp_current_user_can( 'bp_moderate' ), 'query_var' => false, 'rewrite' => false, 'show_in_admin_bar' => false, 'show_ui' => bp_current_user_can( 'bp_moderate' ), 'supports' => bp_get_email_post_type_supports(), )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'bp_register_email_post_type', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_register_email_post_type callback
- function filter_bp_register_email_post_type( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'bp_register_email_post_type', 'filter_bp_register_email_post_type', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_register_email_post_type', 'filter_bp_register_email_post_type', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/classes/class-bp-core.php
- apply_filters( 'bp_register_email_post_type', array(