如何为未找到的图像创建正确的 Wordpress(php) 404 后备。JS 方法不适合,因为 SEO Auditors 只解析 html,仍然存在 404 错误https://prnt.sc/vha4og。
所以请不要建议这样的代码 - 它不能解决问题:
<img src="<?php echo esc_url( $catalog_thumb_image['url'] ); ?>" onerror="this.src='https://site.md/wp-content/uploads/2018/07/logo.png'" alt="<?php esc_attr( the_title() ); ?>">
或通过 jquery
$('img').on('error', function() {
$(this).attr('src', 'https://site.md/wp-content/uploads/2018/07/logo.png');
});