Problems with image attach tag
-
Im having problems with the following code:
?php $args = array( 'order' => 'ASC', 'post_type' => 'attachment', 'post_parent' => $post->ID, 'post_mime_type' => 'image', 'rel' => 'shadowbox', 'post_status' => null, 'numberposts' => -1, ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { echo wp_get_attachment_link($attachment->ID, 'medium'); } } ?>
I need to figure out a way to add the value rel=shadowbox to these images that are being outputted by this code. Any help would be greatyly appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Problems with image attach tag’ is closed to new replies.