2024年05月28日 建站教程
WordPress建站中,如何自动删除文章中图片宽高样式?下面web建站小编给大家简单介绍一下!
add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
add_filter( 'image_send_to_editor', 'remove_width_attribute', 10 );
function remove_width_attribute( $html ) {
$html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
return $html;
}
本文链接:http://so.lmcjl.com/news/5493/