jetpack_contact_info_widget_start
Fires at the beginning of the Contact Info widget, after the title.
Description
do_action( 'jetpack_contact_info_widget_start' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'jetpack_contact_info_widget_start' );
- The following example is for adding a hook callback.
- // define the jetpack_contact_info_widget_start callback
- function action_jetpack_contact_info_widget_start( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'jetpack_contact_info_widget_start', 'action_jetpack_contact_info_widget_start', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'jetpack_contact_info_widget_start', 'action_jetpack_contact_info_widget_start', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /modules/widgets/contact-info.php
- do_action( 'jetpack_contact_info_widget_start' );