wpseek.com
				Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
			block_core_calendar_update_has_published_post_on_delete › WordPress Function
Seit5.9.0
Veraltetn/v
› block_core_calendar_update_has_published_post_on_delete ( $post_id )
| Parameter: | 
 | 
| Definiert in: | 
 | 
| Codex: | 
Handler for updating the has published posts flag when a post is deleted.
Quellcode
function block_core_calendar_update_has_published_post_on_delete( $post_id ) {
		$post = get_post( $post_id );
		if ( ! $post || 'publish' !== $post->post_status || 'post' !== $post->post_type ) {
			return;
		}
		block_core_calendar_update_has_published_posts();
	}
	/**
	 * Handler for updating the has published posts flag when a post status changes.
	 *
	 * @since 5.9.0
	 *
	 * @param string  $new_status The status the post is changing to.
	 * @param string  $old_status The status the post is changing from.
	 * @param WP_Post $post       Post object.
	 */