在Gutenberg图像,封面和画廊中编辑srcset和size属性-块

我正在寻找一种方法来处理Gutenberg图像块上的响应srcset和size属性-如图像, 封面和画廊。

通常, 可以使用” wp_get_attachment_image_attributes”过滤器执行此操作, 例如:

function new_img_sizes( $attr, $attachment, $size ) {
    if ( is_array( $size ) ) {
        $attr['sizes'] = $size[0] . 'px';
    } elseif ( $size == 'large') {
        $attr['sizes'] = '99999px';
    }
    return $attr;
}
add_filter( 'wp_get_attachment_image_attributes', 'new_img_sizes', 25, 3 );

但是古腾堡阻滞器对此没有反应。还有其他方法或方法来利用此过滤器来更改其srcset-behaviour吗?


#1


你在问题中显示的代码不是正确执行的方法。 WordPress上有一个完整的文档页面, 介绍如何执行此操作。你应该这样做:

add_action( 'after_setup_theme', 'wpdocs_theme_setup' );
function wpdocs_theme_setup() {
    add_image_size( 'category-thumb', 300 ); // 300 pixels wide (and unlimited height)
    add_image_size( 'homepage-thumb', 220, 180, true ); // (cropped)
}

来源:

https://www.srcmini02.com/62992.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_42037.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?