General

How to enable data images to appear correctly in WordPress blogs

On some setup WordPress blogs will block the image data protocol from working.

The fix is to edit the wp-includes/functions.php and paste in the following code:

add_filter(‘kses_allowed_protocols', function ($protocols) {
$protocols[] = ‘data';return $protocols;
});

See the post bellow on the kses allowed protocol.