Skip to content

Instantly share code, notes, and snippets.

@espiat
Created September 7, 2018 13:42
Show Gist options
  • Save espiat/a834e682a8fc19ed4e03f37c055357c7 to your computer and use it in GitHub Desktop.
Save espiat/a834e682a8fc19ed4e03f37c055357c7 to your computer and use it in GitHub Desktop.
Content Export in WP with <p> - Tag
function content_export_with_paragraph($content) {
return wpautop($content);
}
add_filter('the_content_export', 'content_export_with_paragraph', 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment