php-删除wp_get_attachment_image图片大小
作者:互联网
有什么办法可以删除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().'" />';
解决方法:
@Jrod的IMO答案正确,但是您也可以致电
wp_get_attachment_url($variable);
这将为您提供完整图像的URL.然后,您可以简单地构造自己的HTML标记来显示图像.
标签:wordpress-theming,wordpress,php 来源: https://codeday.me/bug/20191031/1978047.html