我正在尝试为已经制作的缩略图插件添加一些代码。
基本上我想获取图像的图像src并将其打印到HTML中,但每次运行它时,它只是回显“数组”
这是我到目前为止所做的。
$testing = wp_get_attachment_image_src($post_thumbnail_id);
$html = '<a href="'.$testing.'">';
非常感谢任何帮助。
答案 0 :(得分:0)
根据wp_get_attachment_image_src的Wordpress文档,返回值为:
An array containing: $image[0] => url $image[1] => width $image[2] => height
因此,这就是您所需要的:
$html = '<a href="'.$testing[0].'">';