-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsponsors.php
49 lines (41 loc) · 1.51 KB
/
sponsors.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<div class="squarebanner cf">
<h3 class="sidetitl"> Sponsors </h3>
<ul>
<li>
<?php
$ban1 = of_get_option('w2f_banner1');
$url1 = of_get_option('w2f_url1');
$lab1 = of_get_option('w2f_lab1');
$alt1 = of_get_option('w2f_alt1');
?>
<a rel="nofollow" href="<?php echo ($url1); ?> " title="<?php echo ($lab1); ?>"><img src="<?php echo ($ban1); ?>" alt="<?php echo ($alt1); ?>" style="vertical-align:bottom;" /></a>
</li>
<li>
<?php
$ban2 = of_get_option('w2f_banner2');
$url2 = of_get_option('w2f_url2');
$lab2 = of_get_option('w2f_lab2');
$alt2 = of_get_option('w2f_alt2');
?>
<a rel="nofollow" href="<?php echo ($url2); ?>" title="<?php echo ($lab2); ?>"><img src="<?php echo ($ban2); ?>" alt="<?php echo ($alt2); ?>" style="vertical-align:bottom;" /></a>
</li>
<li>
<?php
$ban3 = of_get_option('w2f_banner3');
$url3 = of_get_option('w2f_url3');
$lab3 = of_get_option('w2f_lab3');
$alt3 = of_get_option('w2f_alt3');
?>
<a rel="nofollow" href="<?php echo ($url3); ?>" title="<?php echo ($lab3); ?>"><img src="<?php echo ($ban3); ?>" alt="<?php echo ($alt3); ?>" style="vertical-align:bottom;" /></a>
</li>
<li>
<?php
$ban4 = of_get_option('w2f_banner4');
$url4 = of_get_option('w2f_url4');
$lab4 = of_get_option('w2f_lab4');
$alt4 = of_get_option('w2f_alt4');
?>
<a rel="nofollow" href="<?php echo ($url4); ?>" title="<?php echo ($lab4); ?>"><img src="<?php echo ($ban4); ?>" alt="<?php echo ($alt4); ?>" style="vertical-align:bottom;" /></a>
</li>
</ul>
</div>