有没有人找到方法来获得对使用Wordpress Jetpack“邮寄电子邮件”功能时创建的图像的更多控制权?
理想情况下,通过电子邮件发布时,我希望我的图片看起来与附加到电子邮件的图片大小相同。与发布电子邮件一样,只发布最大化为1024x1024。
答案 0 :(得分:1)
您可以通过将以下代码插入functions.php
来解决此问题add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
add_filter( 'the_content', 'remove_width_attribute', 10 );
function remove_width_attribute( $html ) {
$html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
return $html;
}
如下所述:http://css-tricks.com/snippets/wordpress/remove-width-and-height-attributes-from-inserted-images/