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