Sow all attachements, without links
-
As stated on https://codex.www.ads-software.com/Function_Reference/get_posts#Show_attachments_for_the_current_post
I use this code
$args = array( 'post_type' => 'attachment', 'numberposts' => 3, 'post_status' => null, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ( $attachments as $attachment ) { the_attachment_link( $attachment->ID , true ); } }
the_attachment_link( $attachment->ID , true );
links to the image, but I don’t want it to link to anything.is used on https://www.aaiko.com/top-pelan/
(or any single post in https://www.aaiko.com/collection/)
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Sow all attachements, without links’ is closed to new replies.