How to get images only attached from edit post page
I´m using this code to load all images I uploaded via edit post page: function get_gallery_images(){ global $wpdb,$post; $ids = “”; $counter = 0; $number_of_posts = 12; $args = array( ‘post_type’ => ‘attachment’, ‘numberposts’ => 12, ‘post_status’ => null, ‘orderby’ => ‘rand’, ‘post_parent’ => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as … Read more