PluginProbe ʕ •ᴥ•ʔ
Image Widget / 4.2
Image Widget v4.2
trunk 1.0 2.0 2.1 2.2 2.2.1 2.2.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.2 3.2.1 3.2.10 3.2.11 3.2.2 3.2.3 3.2.4 3.2.5 3.2.7 3.2.8 3.2.9 3.3 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1 4.1.1 4.1.2 4.2 4.2.1 4.2.2 4.3 4.3.1 4.4 4.4.1 4.4.11 4.4.12 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9
image-widget / freemius / templates / plugin-info / screenshots.php
image-widget / freemius / templates / plugin-info Last commit date
description.php 10 years ago features.php 10 years ago screenshots.php 10 years ago
screenshots.php
20 lines
1 <?php
2 /**
3 * @var FS_Plugin $plugin
4 */
5 $screenshots = $VARS['screenshots'];
6 ?>
7 <ol>
8 <?php $i = 0;
9 foreach ( $screenshots as $s => $url ) : ?>
10 <?php
11 // Relative URLs are replaced with WordPress.org base URL
12 // therefore we need to set absolute URLs.
13 $url = 'http' . ( WP_FS__IS_HTTPS ? 's' : '' ) . ':' . $url; ?>
14 <li>
15 <a href="<?php echo $url ?>" title="<?php printf( __fs( 'view-full-size-x' ), $i ) ?>"><img
16 src="<?php echo $url ?>"></a>
17 </li>
18 <?php $i ++; endforeach ?>
19 </ol>
20