显示带有说明(用户缩略图大小)的附件图像(第一个图像除外)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示带有说明(用户缩略图大小)的附件图像(第一个图像除外)相关的知识,希望对你有一定的参考价值。
description from title, image size from function.php (add_image_size( 'descr', 278, 200, true );)
<?php $images = get_children(array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 1000, 'offset'=>1)); } else { echo '<ul class="descr-phot">'; foreach ( $images as $attachment_id => $attachment ) { echo '<li>'; $large_image_url = wp_get_attachment_image_src( $attachment_id, 'full'); $thumb = wp_get_attachment_image_src( $attachment_id, 'descr'); echo '<a href="' . $large_image_url[0] . '" class="thickbox">'; echo '<img src="'. $thumb[0]. '" />'; echo '</a>'; echo '<span>'. $attachment->post_title .'</span>'; echo '</li>'; } echo '</ul>'; } ?>
以上是关于显示带有说明(用户缩略图大小)的附件图像(第一个图像除外)的主要内容,如果未能解决你的问题,请参考以下文章