PluginProbe
Image Source Control Lite – Show Image Credits and Captions / 1.10.1
Image Source Control Lite – Show Image Credits and Captions v1.10.1
3.12.0 3.11.0 trunk 1.1 1.1.1 1.1.2 1.1.2.1 1.1.3 1.10 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.2 1.2.0.1 1.2.0.2 1.2.0.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.4.1 1.3.5 All 110 releases
image-source-control-isc / admin / templates / image_posts_list.php

image_posts_list.php in Image Source Control Lite – Show Image Credits and Captions 1.10.1, at admin/templates/image_posts_list.php

28 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ($images_with_posts->have_posts()) : ?>
3 <table class="widefat isc-table" style="width: 80%;" >
4 <thead>
5 <tr>
6 <th><?php _e('Image', 'image-source-control-isc'); ?></th>
7 <th><?php _e('Posts', 'image-source-control-isc'); ?></th>
8 </tr>
9 </thead><tbody><?php
10
11 while ($images_with_posts->have_posts()) :
12 $images_with_posts->the_post();
13 $_posts = get_post_meta(get_the_ID(), 'isc_image_posts', true);
14 if(is_array($_posts) && count($_posts) > 0) : ?>
15 <tr>
16 <td><a href="<?php echo admin_url('media.php?attachment_id=' . get_the_ID() . '&action=edit'); ?>"><?php the_title(); ?></a></td>
17 <td>
18 <ul><?php
19 foreach($_posts as $_post_id) : ?>
20 <li><a href="<?php echo get_edit_post_link( $_post_id ); ?>"><?php echo $_post_id; ?></a></li>
21 <?php endforeach; ?>
22 </ul>
23 </td>
24 </tr>
25 <?php endif; ?>
26 <?php endwhile; ?>
27 </tbody></table><?php
28 endif;