Hi there,
I am using the below filter to find all URLs in my post and change them to Hyperlinks.
since I activated the wpDiscuz Media Uploader, this function is not working anymore. Can you please help me here, I will otherwise not be able to use the plugin.
thanks.
function automateHyperlinks($content) {
$content = make_clickable( $content );
return $content;
}
add_filter('the_content', 'automateHyperlinks', 100, 1);