WP_Post::filter( string $filter )
{@Missing Summary}
Description Description
Parameters Parameters
- $filter
-
(string) (Required) Filter.
Return Return
(array|bool|object|WP_Post)
Source Source
File: wp-includes/class-wp-post.php
public function filter( $filter ) {
if ( $this->filter === $filter ) {
return $this;
}
if ( 'raw' === $filter ) {
return self::get_instance( $this->ID );
}
return sanitize_post( $this, $filter );
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |