How to get all attachment image from post ?? WordPress
I just want to get all atachment image from post with Alt, description, title, size, resotution
and how to add DOWNLOAD button?
i want to create image downloading website on wordpress for example LINK
?php $args = array(
'post_parent' = $post-ID,
'post_type' = 'attachment',
'numberposts' = -1, // show all
'post_status' = 'any',
'post_mime_type' = 'image',
'orderby' = 'menu_order',
'order' = 'ASC'
);
$images = get_posts($args);
if($images) { ?
?php foreach($images as $image) { ?
img src=?php echo wp_get_attachment_url($image-ID); ?
Topic attachment-fields-to-edit attachments gallery plugins Wordpress
Category Web