显示带有说明(用户缩略图大小)的附件图像(第一个图像除外)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示带有说明(用户缩略图大小)的附件图像(第一个图像除外)相关的知识,希望对你有一定的参考价值。

description from title, image size from function.php (add_image_size( 'descr', 278, 200, true );)
  1. <?php
  2. $images = get_children(array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 1000, 'offset'=>1));
  3. if ( empty($images) ) {
  4.  
  5. } else {
  6. echo '<ul class="descr-phot">';
  7. foreach ( $images as $attachment_id => $attachment ) {
  8. echo '<li>';
  9. $large_image_url = wp_get_attachment_image_src( $attachment_id, 'full');
  10. $thumb = wp_get_attachment_image_src( $attachment_id, 'descr');
  11. echo '<a href="' . $large_image_url[0] . '" class="thickbox">';
  12. echo '<img src="'. $thumb[0]. '" />';
  13. echo '</a>';
  14. echo '<span>'. $attachment->post_title .'</span>';
  15. echo '</li>';
  16. }
  17. echo '</ul>';
  18. }
  19. ?>

以上是关于显示带有说明(用户缩略图大小)的附件图像(第一个图像除外)的主要内容,如果未能解决你的问题,请参考以下文章

更改 iOS 10 通知图像缩略图大小

带有简单缩略图的衬垫合身

使用啥控件从相机捕获图像并在 ui 上显示为带有事件 xamarin ios 的缩略图

带有缩略图块的 FFMPEG Dash

使用 css 裁剪或缩放图像

创建缩略图失败 redmine