Hi,
Please navigate to Options > General > Generate Shortcode, here you can select your desired parameters for a gallery and click on Generate.
Please let me know if this information helps.
Thank you!
Have a nice day!
Hi,
What I am trying to do is create a “dynamic” gallery of attachments images.
the same way the default gallery works
https://codex.ww.wp.xz.cn/Gallery_Shortcode
I am able to pull the files in using PHP this way but it is of no use to me as I need it inside a gallery.
<?php
$images =& get_children( array (
‘post_parent’ => $post->ID,
‘post_type’ => ‘attachment’,
‘post_mime_type’ => ‘image’
));
if ( empty($images) ) {
// no attachments here
} else {
foreach ( $images as $attachment_id => $attachment ) {
echo wp_get_attachment_image( $attachment_id, ‘thumbnail’ );
}
}
?>
Hi,
Unfortunately, the product does not have the mentioned functionality yet.
The feature you wish to have would be a great addition. So could you please add your suggestion to our Submit Your Idea page?
Our development team will consider working on this for further updates.
Thank you!
Have a nice day!