2013-03-01 18:06:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
echo $before_widget;
|
|
|
|
|
if ( $title)
|
|
|
|
|
echo $before_title . $title . $after_title;
|
|
|
|
|
|
|
|
|
|
for($i=1; $i<=$count; $i++):
|
|
|
|
|
$image = isset($instance['ad_image'][$i]) ? $instance['ad_image'][$i] : '';
|
|
|
|
|
$link = isset($instance['ad_link'][$i]) ? $instance['ad_link'][$i] : '';
|
|
|
|
|
if(empty($image))
|
|
|
|
|
$image = WPV_THEME_IMAGES.'ad.png';
|
|
|
|
|
?>
|
|
|
|
|
<a href="<?php echo $link ?>" rel="nofollow" target="_blank" title="<?php _e('Advertisment', 'wpv') ?>">
|
|
|
|
|
<?php wpv_lazy_load($image, __('Advertisment', 'wpv'))?>
|
|
|
|
|
</a>
|
|
|
|
|
<?php
|
|
|
|
|
endfor;
|
|
|
|
|
|
|
|
|
|
echo $after_widget;
|