gmb_maps_icons_markers_list_after
Use this action to add additional markers after.
Description
do_action( 'gmb_maps_icons_markers_list_after' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'gmb_maps_icons_markers_list_after' );
- The following example is for adding a hook callback.
- // define the gmb_maps_icons_markers_list_after callback
- function action_gmb_maps_icons_markers_list_after( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'gmb_maps_icons_markers_list_after', 'action_gmb_maps_icons_markers_list_after', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'gmb_maps_icons_markers_list_after', 'action_gmb_maps_icons_markers_list_after', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /vendor/wordimpress/maps-builder-core/includes/admin/views/markers.php
- do_action( 'gmb_maps_icons_markers_list_after' ); ?>