显示所有链接到文章的图片附件

quality,Q 70

1638704618 20211205114338 61aca5eab48ea

摘要

下面这段代码可以将链接到文章的图片附件自动显示在文章中,不需要你手工编辑。

将代码添加到你的主题functions.php文件中
当然,还需另外的CSS样式及HTML代码配合图片显示。

下面这段代码可以将链接到文章的图片附件自动显示在文章中,不需要你手工编辑。

将代码添加到你的主题functions.php文件中:

  1. // display user-submitted images  
  2. function usp_display_images() {  
  3.      global $post;  
  4.      $args = array(‘order’=>’ASC’, ‘post_type’=>’attachment’, ‘post_parent’=>$post->ID, ‘post_mime_type’=>’image’, ‘post_status’=>null);  
  5.      $items = get_posts($args); ?>  
  6.    
  7.           <div class=“usp-image”>  
  8.           <?php foreach ($items as $item) {  
  9.                $atts = wp_get_attachment_image_src($item->ID, ‘medium’);  
  10.                $full = wp_get_attachment_image_src($item->ID, ‘full’); ?>  
  11.                <a href=“<?php echo $full[0]; ?>” target=“_blank”><img src=“<?php echo $atts[0]; ?>” width=“<?php echo $atts[1]; ?>” height=“<?php echo $atts[2]; ?>” alt=“”></a>  
  12.           <?php }  
  13.                $author = get_post_meta($post->ID, ‘user_submit_name’, true);  
  14.                $url = get_post_meta($post->ID, ‘user_submit_url’, true);  
  15.                if (filter_var($url, FILTER_VALIDATE_URL) !== false) {  
  16.                echo ‘<span class=“usp-author-link”>Posted by <a href=“‘ . $url . ‘”>’ . $author . ‘</a></span> ‘;  
  17.           } ?>  
  18.           </div>  
  19.    
  20. <?php }  
  21. add_filter(‘the_content’, ‘usp_display_images’);  

当然,还需另外的CSS样式及HTML代码配合图片显示。

原文:http://wp-mix.com/display-images-attached-post/

类似文章