beans_post_content

Echo post content.

beans_post_content( )

Return: (void)

Source

function beans_post_content() {

	global $post;

	beans_open_markup_e( 'beans_post_content', 'div', array(
		'class'    => 'tm-article-content',
		'itemprop' => 'text',
	) );

		the_content();

		if ( is_singular() && 'open' === get_option( 'default_ping_status' ) && post_type_supports( $post->post_type, 'trackbacks' ) ) {

			echo '<!--';
			trackback_rdf();
			echo '-->' . "\n";

		}

	beans_close_markup_e( 'beans_post_content', 'div' );

}