Skip to content

Instantly share code, notes, and snippets.

@temsool
Created October 15, 2018 19:34
Show Gist options
  • Save temsool/4ad81cf0ee44e267afaccf3e01a6001e to your computer and use it in GitHub Desktop.
Save temsool/4ad81cf0ee44e267afaccf3e01a6001e to your computer and use it in GitHub Desktop.
Enable wpautop wordpress elementor
<?php
add_action( 'elementor/widget/render_content', function( $content, $widget ) {
if ( 'text-editor' === $widget->get_name() ) {
$content =wpautop($content);
}
return $content;
}, 10, 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment