Your IP : 18.222.112.116


Current Path : /var/www/html/wp-content/themes/church-event/templates/widgets/front/
Upload File :
Current File : /var/www/html/wp-content/themes/church-event/templates/widgets/front/advertisement.php

<?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', 'church-event') ?>"><?php wpv_url_to_image( $image )?></a>
<?php
endfor;

echo $after_widget;