wordpress教程:移除图片的高度和宽度属性

时间:2016-07-10
 
定义主题样式的时候,有可能需要移除本身图片的宽度和高度属性来方便我们使用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教程:自定义登录界面网站模板元素 下一条:wordpress教程:移除wp_nav_menu()多余的CSS选择器

相关文章

最新文章