wp_insert_post
Fires once a post has been saved.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'add_post_meta' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_insert_post', $array );
- The following example is for adding a hook callback.
- // define the wp_insert_post callback
- function action_wp_insert_post( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_insert_post', 'action_wp_insert_post', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_insert_post', 'action_wp_insert_post', 10, 1 );
Defined (4)
The action is defined in the following location(s).
- /modules/custom-post-types/nova.php
- add_action( 'wp_insert_post', array( $this, 'add_post_meta' ) );
- /modules/markdown/easy-markdown.php
- add_action( 'wp_insert_post', array( $this, 'wp_insert_post' ) );
- remove_action( 'wp_insert_post', array( $this, 'wp_insert_post' ) );
- /sync/class.jetpack-sync-module-posts.php
- add_action( 'wp_insert_post', array( $this, 'wp_insert_post' ), $priority, 3 );