Display the post content.
Signature
the_content( $more_link_text = null, $stripteaser = false )
- more_link_text
- (string) Optional. Content for when there is more text.
Default:null - stripteaser
- (boolean) Optional. Strip teaser content before the more text. Default is false.
Default:false
Return
(void)
Source
function the_content($more_link_text = null, $stripteaser = false) {
$content = get_the_content($more_link_text, $stripteaser);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
}
WP Trac GitHub Bitbucket
Link here
-
URL
http://queryposts.com/function/the_content/ -
HTML
<a href='http://queryposts.com/function/the_content/'>the_content()</a> -
Markdown
[the_content()](http://queryposts.com/function/the_content/) -
BBCode
[url=http://queryposts.com/function/the_content/]the_content()[/url]