edit_post, $post->ID, $post

edit_post, $post->ID, $post

Hook Type: action

See hook in core

Displaying hooks found in version: siteorigin-panels.2.36.0

do_action('edit_post, $post->ID, $post') is found 1 times:

  • /inc/admin.php line 1046
    				$old_status = $post->post_status;
    				$post->post_status = 'draft';
    				wp_transition_post_status( 'draft', $old_status, $post );
    
    				do_action( 'edit_post', $post->ID, $post );
    				do_action( "save_post_{$post->post_type}", $post->ID, $post, true );
    				do_action( 'save_post', $post->ID, $post, true );
    				do_action( 'wp_insert_post', $post->ID, $post, true );
    			}
    		}
    	}