I am tryin to insert all pictures in media to page. By meaning all pictures, everything added in blog. I ve been looking this feature all day. Is there any shortcode for that or something easy to make it?
Thanks in advance.
I am tryin to insert all pictures in media to page. By meaning all pictures, everything added in blog. I ve been looking this feature all day. Is there any shortcode for that or something easy to make it?
Thanks in advance.
You must be logged in to post a comment.
First, you need to create a custom page Template, to hold your custom loop output. Create a Theme file, named e.g.
template-all-images.php
, with the following header:Then, in the custom page template, you need to query for all image attachments. Try using
WP_Query()
, with post type/status arguments:Then, output the query:
For your loop output, if you just want to output a fully formed image, you can use e.g.
wp_get_attachment_image()
:(Replace
'large'
with your desired image size, or omit, to use the default size,'thumbnail'
.)The entire custom page template file might look like the following:
Using your custom page template
template-all-images.php
is saved to your Theme directory underwp-content/themes/{theme-name}
.Edits
Edits incorporated into the question.