IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
443 | 443 | $_post = WP_Post::get_instance( $post ); |
444 | 444 | } |
445 | 445 | |
| 446 | /** |
| 447 | * Filter that allows a post object to be further sanitized, virtualized and/or have properties annotated. |
| 448 | * |
| 449 | * @since 4.4.0 |
| 450 | * |
| 451 | * @param WP_Post $_post Post object to saitize/virtualize/annotate/etc. |
| 452 | * @param WP_Post $post Original post object passed in. |
| 453 | * @param string $output Format of data to return, potentially 'OBJECT', 'ARRAY_A' or 'ARRAY_N'. |
| 454 | * @param string $filter Type of filter to apply, potentially 'raw', 'edit', 'db' or 'display'. |
| 455 | */ |
| 456 | $_post = apply_filters( 'get_post', $_post, $post, $output, $filter ); |
| 457 | |
446 | 458 | if ( ! $_post ) |
447 | 459 | return null; |
448 | 460 | |