apply_filters( 'wp_insert_post_empty_content', bool $maybe_empty, array $postarr )

Filters whether the post should be considered “empty”.


Description

The post is considered "empty" if both:

  1. The post type supports the title, editor, and excerpt fields
  2. The title, editor, and excerpt fields are all empty

Returning a truthy value from the filter will effectively short-circuit the new post being inserted and return 0. If $wp_error is true, a WP_Error will be returned instead.


Top ↑

Parameters

$maybe_empty bool
Whether the post should be considered "empty".
$postarr array
Array of post data.

Top ↑

Source

File: wp-includes/post.php. View all references

if ( apply_filters( 'wp_insert_post_empty_content', $maybe_empty, $postarr ) ) {


Top ↑

Changelog

Changelog
Version Description
3.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.