bp_core_setup_oembed
Filters the BuddyPress Core oEmbed setup.
Description
Parameters (1)
- 0. $array (array) =>
array( &$this )
- Current instance of the
BP_Embed
. Passed by reference.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_core_setup_oembed', $array );
- The following example is for adding a hook callback.
- // define the bp_core_setup_oembed callback
- function action_bp_core_setup_oembed( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_core_setup_oembed', 'action_bp_core_setup_oembed', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_core_setup_oembed', 'action_bp_core_setup_oembed', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /bp-core/classes/class-bp-embed.php
- do_action_ref_array( 'bp_core_setup_oembed', array( &$this ) );