wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_insert_post_empty_content › WordPress Filter Hooks

Since3.3.0
Deprecatedn/a
apply_filters( 'wp_insert_post_empty_content', $maybe_empty, $postarr )
Parameters: (2)
  • () maybe_empty Whether the post should be considered "empty".
    Required: Yes
  • () postarr Array of post data.
    Required: Yes
Defined at:
Codex:

Filters whether the post should be considered "empty".

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.




Source

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