Add pre_ent2ncr filter. props GaryJ, fixes #16432.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-07-21 21:41:21 +00:00
parent 93560c8612
commit 6185986c0e

View File

@ -1875,6 +1875,10 @@ function wp_trim_excerpt($text) {
* @return string Text with converted entities.
*/
function ent2ncr($text) {
if( null !== $filtered = apply_filters( 'pre_ent2ncr', null, $text ) )
return $filtered;
$to_ncr = array(
'"' => '"',
'&' => '&',