_update_blog_date_on_post_delete()WP 3.4.0

Handler for updating the current site's last updated date when a published post is deleted.

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

null. Nothing (null).

Usage

_update_blog_date_on_post_delete( $post_id );
$post_id(int) (required)
Post ID

Changelog

Since 3.4.0 Introduced.

_update_blog_date_on_post_delete() code WP 6.4.3

function _update_blog_date_on_post_delete( $post_id ) {
	$post = get_post( $post_id );

	$post_type_obj = get_post_type_object( $post->post_type );
	if ( ! $post_type_obj || ! $post_type_obj->public ) {
		return;
	}

	if ( 'publish' !== $post->post_status ) {
		return;
	}

	wpmu_update_blogs_date();
}