wordpress教程:移除图片的高度和宽度属性
定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用CSS定义。将下面代码添加到主题的functions.php即可add_filter( post_thumbnail_html, remove_width_attrib
定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用CSS定义。
将下面代码添加到主题的functions.php即可
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;
}
特别声明:以上内容(如有图片或视频亦包括在内)为本平台用户上传并发布,本平台仅提供信息存储服务。举报




