WordPress js 移除属性
wordpress教程:移除图片的高度和宽度属性,移除WordPress文章图片的宽度和高度属性实用方法,WordPress教程:教你如何移除文章图片的宽度和高度属性,WordPress,下面小编来给大家介绍一下,一起来了解一下吧!
定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用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;
}
以上就是WordPress js 移除属性的介绍,希望大家喜欢!
更多教程关注FF推源码网。