使用 get_the_post_thumbnail 时的奇怪图像属性(wordpress 开发)
Weird image attributes when using get_the_post_thumbnail(wordpress development)
<?php get_the_post_thumbnail(get_the_id(),array(370,552));?>
显示下图
为什么默认创建属性 1 和 0?有什么想法吗?
我只安装了默认插件
注意,get_the_ID()大写。
我把数组从 get_the_id(),array(370,552));到
get_the_id(),'my-custom-size');
<?php get_the_post_thumbnail(get_the_id(),array(370,552));?>
显示下图
为什么默认创建属性 1 和 0?有什么想法吗?
我只安装了默认插件
注意,get_the_ID()大写。
我把数组从 get_the_id(),array(370,552));到 get_the_id(),'my-custom-size');