我想将新的wordpress 4.4函数srcset与来自如下自定义字段的图像一起使用
<img src="<?php $bigimg = get_post_meta($post->ID, \'bg_file\', true); echo wp_get_attachment_url( $bigimg );?>" alt="">
如何让srcset函数与它一起工作?
wp_get_attachment_image_srcset( 380, \'medium\' );
已为my functions中的post\\u缩略图激活srcset。php。
非常感谢。
最合适的回答,由SO网友:TheDeadMedic 整理而成
把二和二放在一起:
<img src="<?php $bigimg = get_post_meta( $post->ID, \'bg_file\', true ); echo wp_get_attachment_url( $bigimg ); ?>" srcset="<?php echo wp_get_attachment_image_srcset( $bgimg, \'medium\' ) ?>" alt="" />