bp_xprofile_fullname_field_name
Filters the field name for the Full Name xprofile field.
Description
Parameters (1)
- 0. $bp_xprofile_fullname_field_name (string) =>
BP_XPROFILE_FULLNAME_FIELD_NAME
- BP_XPROFILE_FULLNAME_FIELD_NAME Full name field constant.
Usage
- To run the hook, copy the example below.
- $bp_xprofile_fullname_field_name = apply_filters( 'bp_xprofile_fullname_field_name', $bp_xprofile_fullname_field_name );
- if ( !empty( $bp_xprofile_fullname_field_name ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_xprofile_fullname_field_name callback
- function filter_bp_xprofile_fullname_field_name( $bp_xprofile_fullname_field_name ) {
- // make filter magic happen here...
- return $bp_xprofile_fullname_field_name;
- };
- // add the filter
- add_filter( 'bp_xprofile_fullname_field_name', 'filter_bp_xprofile_fullname_field_name', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_xprofile_fullname_field_name', 'filter_bp_xprofile_fullname_field_name', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-xprofile/bp-xprofile-functions.php
- return apply_filters( 'bp_xprofile_fullname_field_name', BP_XPROFILE_FULLNAME_FIELD_NAME );