Definition:
function format_to_post($content) {}
Holder for the ‘format_to_post’ filter.
Parameters
- string $content: The text to pass through the filter.
Return values
returns:Text returned from the ‘format_to_post’ filter.
Defined filters
- format_to_post
apply_filters('format_to_post', $content)
Source code
function format_to_post($content) {
$content = apply_filters('format_to_post', $content);
return $content;
}
1094

February 11, 2011 


Still not sure what this function does…