sanitize_post() WP 1.0
Sanitize every post field.
If the context is 'raw', then the post object or array will get minimal sanitization of the integer fields.
Works based on: sanitize_post_field()
1 time = 0.000089s = very fast | 50000 times = 3.16s = fast
No Hooks.
Return
Object/WP_Post/Array. The now sanitized post object or array (will be the same type as $post).
Usage
sanitize_post( $post, $context );
- $post(object/WP_Post/array) (required)
- The post object or array
- $context(string)
- How to sanitize post fields. Accepts 'raw', 'edit', 'db', or 'display'.
Default: 'display'
Notes
- See: sanitize_post_field()
Changelog
Since 2.3.0 | Introduced. |
Code of sanitize_post() sanitize post WP 5.6
Related Functions
From tag: sanitize_
- sanitize_email()
- sanitize_file_name()
- sanitize_html_class()
- sanitize_meta()
- sanitize_option()
- sanitize_post_field()