the_content
Prepare KB post data.
Type: filter
Source: includes/rest/class-rest-controller.php line 758
Parameters
| Type | Name | Description |
|---|---|---|
\WP_Post | $post | Post object. |
bool | $include_content | Include full content flag. |
Usage
add_filter( 'the_content', function($post, $include_content) {
// ...
return $post;
} );