I may have looked at the wrong template file since there are many, but all occurrences had the right function used as far as I could see.
This is where the issue was happening: https://www.magikweb.ca/blogue
And this is the HTML code of that template (good luck to my markdown and no preview):
switch ( is_singular() ) {
case true:
printf( '<div class="entry-thumb">%s</div>', $thumb );
break;
case false:
printf( '<a href="%1$s" class="entry-thumb" title="%2$s">%3$s</a>',
esc_url( get_permalink() ),
esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ),
$thumb
);
break;
}
If you’d like more details to validate and make sure it’s not a bug, I can help you out. Like I said, it might be my own error that I am not looking at the right place, but I hardly think I’d be in the wrong file since it’s the only one with the class “entry-thumb”.