edit_post

edit_post

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('edit_post') is found 4 times:

  • /wp-includes/class-wp-customize-manager.php line 3112
    3108
    3109
    3110
    3111
    3112
    3113
    3114
    3115
    3116
    3117
    3118
    /** This action is documented in wp-includes/post.php */
    do_action( "edit_post_{$post->post_type}", $post->ID, $post );
     
    /** This action is documented in wp-includes/post.php */
    do_action( 'edit_post', $post->ID, $post );
     
    /** This action is documented in wp-includes/post.php */
    do_action( "save_post_{$post->post_type}", $post->ID, $post, true );
     
    /** This action is documented in wp-includes/post.php */
    do_action( 'save_post', $post->ID, $post, true );
  • /wp-includes/comment.php line 2801
    2797
    2798
    2799
    2800
    2801
    2802
    2803
    2804
    2805
    2806
    2807
        /** This action is documented in wp-includes/post.php */
        do_action( "edit_post_{$post->post_type}", $post_id, $post );
     
        /** This action is documented in wp-includes/post.php */
        do_action( 'edit_post', $post_id, $post );
     
        return true;
    }
     
    //
    // Ping and trackback functions.
  • /wp-includes/post.php line 5016
    5012
    5013
    5014
    5015
    5016
    5017
    5018
    5019
    5020
    5021
    5022
    *
     * @param int     $post_id Post ID.
     * @param WP_Post $post    Post object.
     */
    do_action( 'edit_post', $post_id, $post );
     
    $post_after = get_post( $post_id );
     
    /**
     * Fires once an existing post has been updated.
     *
  • /wp-includes/post.php line 5228
    5224
    5225
    5226
    5227
    5228
    5229
    5230
    5231
    5232
    5233
    5234
    /** This action is documented in wp-includes/post.php */
    do_action( "edit_post_{$post->post_type}", $post->ID, $post );
     
    /** This action is documented in wp-includes/post.php */
    do_action( 'edit_post', $post->ID, $post );
     
    /** This action is documented in wp-includes/post.php */
    do_action( "save_post_{$post->post_type}", $post->ID, $post, true );
     
    /** This action is documented in wp-includes/post.php */
    do_action( 'save_post', $post->ID, $post, true );

See this hook used in plugins: