如何使用wp_get_attachment_image_src获取原始图像


12

我想获得与上载相同宽度和高度的原始图像。

我的原始图像是630 * 370。

使用以下函数调用,我得到的缩略图大小为630 * 198。

wp_get_attachment_image_src($PriImgId,array('630','370'));

我如何以630 * 370获取

Answers:


31

尝试这个 :

wp_get_attachment_image_src( $PriImgId, 'full' );

另外,有关更多选项,请参见食典


2
wp_get_attachment_image_src($ PriImgId,'full')[0]; 会给出确切的链接
杀手级

-1

我认为您需要删除“ 630”和“ 370”上的引号。

尝试这个:

wp_get_attachment_image_src($PriImgId,array( 630, 370 ) );
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.