PluginProbe ʕ •ᴥ•ʔ
Image Widget / 4.4.12
Image Widget v4.4.12
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 / views / widget.php
image-widget / views Last commit date
index.php 1 year ago widget-admin.deprecated.php 1 year ago widget-admin.php 1 year ago widget.php 1 year ago
widget.php
23 lines
1 <?php
2 /**
3 * Widget template. This template can be overriden using the "sp_template_image-widget_widget.php" filter.
4 * See the readme.txt file for more info.
5 */
6
7 // Block direct requests
8 if ( ! defined( 'ABSPATH' ) )
9 die( '-1' );
10
11 echo $before_widget;
12
13 if ( ! empty( $title ) ) { echo $before_title . $title . $after_title; }
14
15 echo $this->get_image_html( $instance, true );
16
17 if ( ! empty( $description ) ) {
18 echo '<div class="' . esc_attr( $this->widget_options['classname'] ) . '-description" >';
19 echo wpautop( $description );
20 echo '</div>';
21 }
22 echo $after_widget;
23