In my WordPress blog, I inserted the following content in "Description" field in add new post form.
sss'ss''ss'''ss"ss""sss"""
I am applying the filter hook(add_filter) the the_content() function as below. Basically I want to display non spaced words if it exist more than 50 character means, I would like to give space after 50 characters. So I used wordwrap function to do that. But while use special characters in content I am getting wired output as mentioned below.
function.php
function filter_content($content) {
global $post;
$original = wordwrap($content,50,' ',' ' );
return $original;
}
add_filter( 'the_content', 'filter_content' );
Output :
sss’ss”ss”’ss”ss& #8221;"sss”"”
the_content() functionwith the following function."? Are you appending functionthe_content()or are you applying a filter to action HOOKthe_content? These are very different operations. It seems obvious the result you are getting is not generated by function wordwrap(), don't forget hookthe_contentis a popular way to modify the content and you don't know what other functions are already doing it or the way they do it. – PDR Nov 30 '12 at 0:07the_content() functionin the single post page, it display following content with issue.. I really don't get it. ¿Do you think the problem is withthe_content() functionwhen you use it, with the wordwrap inthe_contenthook, or with both? Impossible to guess, I will not waste my time trying to do it. Good luck. – FarFromGenius Nov 30 '12 at 1:26