Find us on Facebook

LightBlog
Responsive Ads Here

Thứ Sáu, 23 tháng 2, 2018

How to get original image using wp_get_attachment_image_src

Question:

I want to get the original image with the same width and height as uploaded.
My original image is 630*370.
Using the following function call I get a thumbnail sized at 630*198.
wp_get_attachment_image_src($PriImgId,array('630','370'));
How can I get it at 630*370

Answer:

Try this :
wp_get_attachment_image_src( $PriImgId, 'full' );
Also, for more options see the Codex.

Không có nhận xét nào:

Đăng nhận xét