Hello,
I'd like to put the very last character of the_content() inside a <span> tag, no matter what the character is. I was able to put an empty <span></span> tag after the last character with this code:
$content = get_the_content()."<span></span>";
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
But that doesn't satifty me. I'd greatly appreciate any help!