mc4wp_admin_form_after_behaviour_settings_rows
The MailChimp for WordPress mc4wp admin form after behaviour settings rows hook.
Description
Parameters (2)
- 0. $opts (unknown)
- The opts.
- 1. $form (unknown)
- The form.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'mc4wp_admin_form_after_behaviour_settings_rows', $opts, $form );
- The following example is for adding a hook callback.
- // define the mc4wp_admin_form_after_behaviour_settings_rows callback
- function action_mc4wp_admin_form_after_behaviour_settings_rows( $opts, $form ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'mc4wp_admin_form_after_behaviour_settings_rows', 'action_mc4wp_admin_form_after_behaviour_settings_rows', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'mc4wp_admin_form_after_behaviour_settings_rows', 'action_mc4wp_admin_form_after_behaviour_settings_rows', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /includes/forms/views/tabs/form-settings.php
- do_action( 'mc4wp_admin_form_after_behaviour_settings_rows', $opts, $form );