Skip to content

Instantly share code, notes, and snippets.

@martynchamberlin
martynchamberlin / functions.php
Last active February 16, 2018 00:09
How to get_the_content() with formatting
<?php
/**
* Instead of calling get_the_content(), call this function instead, and it'll all be good
*/
function get_the_content_with_formatting()
{
ob_start();
the_content();
$the_content = ob_get_contents();