有没有办法删除wp_get_attachment函数的图像大小?
我正在尝试以下代码而没有运气,试图将其100%或完全没有。
echo wp_get_attachment_image($variable, array(100 . '%', 100 . '%'));
修改的
这是我最终得到的结果,完全归功于drew010。
echo '<img src="'.wp_get_attachment_url($variable).'" alt="'.get_the_title().'" />';
答案 0 :(得分:3)
@Jrod有正确答案IMO,但你也可以打电话
wp_get_attachment_url($variable);
,它为您提供完整图像的URL。然后,您可以简单地构建自己的HTML标记以显示图像。
答案 1 :(得分:1)
如果您想要全尺寸图片,请使用以下内容:
echo wp_get_attachment_image($variable, 'full');
答案 2 :(得分:0)
您无法以这种方式使用它:alt="'.get_the_title().'"
您必须使用esc_attr($attachment->post_title)
或the_title_attribute()
。
如果标题有一些html标签,你的alt属性可能会使你的html大纲崩溃。相信我,一年前我在一些主题中搜索了这个错误超过1小时。