format_to_post

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

One Response to “format_to_post”

  1. Unknown's avatar

    Still not sure what this function does…

Leave a comment