Quantcast
Channel: Nederland » Recent Posts
Viewing all articles
Browse latest Browse all 30043

Mathieu Scholtes on "afbeeldings beschrijving en ondertitel toevoegen in Exposition template"

$
0
0

Als je wat kunt coderen zou dit moeten werken: (Kwam ik tegen op het engelse wordress.org forum)

<?php
	$args = array( 'post_type' => 'attachment', 'orderby' => 'menu_order', 'order' => 'ASC', 'post_mime_type' => 'image' ,'post_status' => null, 'numberposts' => null, 'post_parent' => $post->ID );

	$attachments = get_posts($args);
	if ($attachments) {
		foreach ( $attachments as $attachment ) {
  $alt = get_post_meta($attachment->ID, '_wp_attachment_image_alt', true);
	$image_title = $attachment->post_title;
	$caption = $attachment->post_excerpt;
	$description = $image->post_content;
?>
		<a href="<?php echo wp_get_attachment_url( $attachment->ID); ?>" rel="lightbox" title="<?php echo $image_title; ?>"><img src="<?php echo get_bloginfo('template_directory'); ?>/timthumb.php?h=75&w=75&zc=1&src=<?php echo wp_get_attachment_url( $attachment->ID , false ); ?>" alt="<?php echo $alt; ?>" width="75" height="75" border="0" /></a>
 <?php } } ?>

Viewing all articles
Browse latest Browse all 30043

Trending Articles