llms_content( $content = '' )


Source Source

File: includes/llms.functions.core.php

if ( ! function_exists( 'llms_content' ) ) {
	function llms_content( $content = '' ) {
		$content = do_shortcode( shortcode_unautop( wpautop( convert_chars( wptexturize( $content ) ) ) ) );
		global $wp_embed;
		if ( $wp_embed && method_exists( $wp_embed, 'autoembed' ) ) {
			$content = $wp_embed->autoembed( $content );
		}
		return $content;


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.