Title: Get started
Last modified: December 10, 2020

---

# Get started

 *  [Ruben](https://wordpress.org/support/users/rubenvankempen/)
 * (@rubenvankempen)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/get-started-2/)
 * Hi there,
 * What happened?
    – Plugin downloaded – Plugin installed – Plugin activated – Selected
   my post type, using `Dashboard > Setting > WP gallery metabox` – Created a new
   post, of my Custom Post Type – Gallery-field appears in Custom Post Type – Added
   a few pictures using the Gallery-field – Edited the template I use for my Custom
   Post Type using Elementor – Add Gallery-widget – Choose dynamic tag – What field
   do I choose? (screenshot [https://prnt.sc/w015hy](https://prnt.sc/w015hy)) _–
   The WP gallery is not found.._
 * And, what do I have to do with the code mentioned on the plugin-page?
    `get_post_meta(
   get_the_ID(), ‘vdw_gallery_id’);`

Viewing 1 replies (of 1 total)

 *  Plugin Author [HK](https://wordpress.org/support/users/hk1993/)
 * (@hk1993)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/get-started-2/#post-13821034)
 * Hello [@rubenvankempen](https://wordpress.org/support/users/rubenvankempen/),
 * You need to add the following code to your custom template file to get the gallery
   images.
 *     ```
        $result = get_post_meta($post_id, 'vdw_gallery_id', true);
             foreach ($result as $val) {
                 $img = wp_get_attachment_image_src($val, 'full');
                 echo "<img src='$img[0]' />";
             }
       ```
   
    -  This reply was modified 5 years, 5 months ago by [Yui](https://wordpress.org/support/users/fierevere/).
    -  This reply was modified 5 years, 5 months ago by [Yui](https://wordpress.org/support/users/fierevere/).
      Reason: please use CODE button for proper formatting

Viewing 1 replies (of 1 total)

The topic ‘Get started’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-gallery-metabox_9c8915.svg)
 * [WP Gallery Metabox](https://wordpress.org/plugins/wp-gallery-metabox/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-gallery-metabox/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-gallery-metabox/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-gallery-metabox/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-gallery-metabox/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-gallery-metabox/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [HK](https://wordpress.org/support/users/hk1993/)
 * Last activity: [5 years, 5 months ago](https://wordpress.org/support/topic/get-started-2/#post-13821034)
 * Status: not resolved