nf_sub_edit_date_submitted
The Ninja Forms nf sub edit date submitted hook.
Description
Parameters (1)
- 0. $post (unknown)
- The post.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'nf_sub_edit_date_submitted', $post );
- The following example is for adding a hook callback.
- // define the nf_sub_edit_date_submitted callback
- function action_nf_sub_edit_date_submitted( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'nf_sub_edit_date_submitted', 'action_nf_sub_edit_date_submitted', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'nf_sub_edit_date_submitted', 'action_nf_sub_edit_date_submitted', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /includes/Templates/admin-metabox-sub-info.html.php
- <?php do_action( 'nf_sub_edit_date_submitted', $post ); ?>
- /deprecated/classes/subs-cpt.php
- <?php do_action( 'nf_sub_edit_date_submitted', $post ); ?>