I'm pulling some data with the WPDB class in Wordpress, however - the data is being retrieved as raw data, without any markup.
How can I automatically add this markup?
I'm pulling some data with the WPDB class in Wordpress, however - the data is being retrieved as raw data, without any markup.
How can I automatically add this markup?
Got it :)
$text = apply___filters('the_content', $text);
See reference at wp-includes/formatting.php
Should be $text = apply_filters( 'the_content', $text );
— one underscore.