Hello! Thank you for an excellent plug-in!! I’m also having troubles with the image URL. When I deleted the code snippet for the thumbnail filter the site crashed. My theme functions look like this:
add_filter( ‘post_thumbnail_html’, ‘grisaille_post_image_html’, 10, 3 );
function grisaille_post_image_html( $html, $post_id, $post_image_id ) {
$html = ‘‘ . $html . ‘‘;
return $html;
}
What part is safe to delete for the URL’s to work? My theme is grisaille.
Thanks so much!!