我希望将 rel="image_src" 添加到出现在 wordpress 帖子中的所有图像标签中。我尝试从以下位置编辑 /wp-includes/media.php:
$html = '<img src="' . esc_attr($img_src) . '" alt="' . esc_attr($alt) . '" title="' . esc_attr($title).'" '.$hwstring.'class="'.$class.'" />';
到
$html = '<img src="' . esc_attr($img_src) . '" alt="' . esc_attr($alt) . '" rel="image_src" title="' . esc_attr($title).'" '.$hwstring.'class="'.$class.'" />';
但无济于事。我是在正确的位置,还是我应该编辑其他东西?
非常感谢