| Current Path : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/rich-text/includes/ |
| Current File : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/rich-text/includes/frontend.php |
<?php
$attrs = [
'class' => [
'fl-rich-text', // Necessary for live preview/inline editing.
],
];
?>
<div <?php $module->render_attributes( $attrs ); ?>>
<?php
global $wp_embed;
$wpautop = true;
// should we wpautop?
if ( isset( $settings->connections ) && is_array( $settings->connections ) ) {
if ( isset( $settings->connections['text'] ) && isset( $settings->connections['text']->property ) && 'content' === $settings->connections['text']->property ) {
$wpautop = false;
}
}
echo true === $wpautop ? FLBuilderUtils::wpautop( $wp_embed->autoembed( $settings->text ), $module ) : $wp_embed->autoembed( $settings->text );
?>
</div>