llms_content( $content = '' )
Contents
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;
Expand full source code Collapse full source code View on GitHub