BP_Members_Invitations_List_Table::column_default( BP_Invitation $invite = null, string $column_name = '' )
Allow plugins to add their custom column.
Parameters Parameters
- $invite
-
(BP_Invitation) (Optional) BP_Invitation object.
Default value: null
- $column_name
-
(string) (Optional) The column name.
Default value: ''
Return Return
(string)
Source Source
File: bp-members/classes/class-bp-members-invitations-list-table.php
function column_default( $invite = null, $column_name = '' ) { /** * Filters the single site custom columns for plugins. * * @since 8.0.0 * * @param string $column_name The column name. * @param object $invite The BP_Invitation object.. */ return apply_filters( 'bp_members_invitations_management_custom_column', '', $column_name, $invite ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
8.0.0 | Introduced. |