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



wp_insert_post_data › WordPress Filter Hooks

Since6.0.0
Deprecatedn/a
apply_filters( 'wp_insert_post_data', $data, $postarr, $unsanitized_postarr, $update )
Parameters: (4)
  • () data An array of slashed, sanitized, and processed post data.
    Required: Yes
  • () postarr An array of sanitized (and slashed) but otherwise unmodified post data.
    Required: Yes
  • () unsanitized_postarr An array of slashed yet *unsanitized* and unprocessed post data as originally passed to wp_insert_post().
    Required: Yes
  • () update Whether this is an existing post being updated.
    Required: Yes
Defined at:
Codex:

Filters slashed post data just before it is inserted into the database.





Source

$data = apply_filters( 'wp_insert_post_data', $data, $postarr, $unsanitized_postarr, $update );