tribe_the_content( string $more_link_text = null, bool $strip_teaser = false, WP_Post|object|int $post_id = null )
Prints the post content.
Contents
Parameters
- $more_link_text
-
(string) (Optional) Content for when there is more text.
Default value: null
- $strip_teaser
-
(bool) (Optional) Strip teaser content before the more text. Default is false.
Default value: false
- $post_id
-
(WP_Post|object|int) (Optional) WP_Post instance or Post ID/object. Default is null.
Default value: null
Return
(void)
Source
File: src/functions/template-tags/post.php
function tribe_the_content( $more_link_text = null, $strip_teaser = false, $post_id = null ) {
echo tribe_get_the_content( $more_link_text, $strip_teaser, $post_id );
}
Changelog
| Version | Description |
|---|---|
| 4.9.23 | Introduced. |