-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
47 lines (38 loc) · 1.78 KB
/
sidebar.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
<div id="sidebar">
<div class="contato">
<ul>
<li>(86) 2107-9999 (7:30h às 14:30h)</li>
<li>cs@tre-pi.gov.br</li>
<li>Portal CSTI</li>
</ul>
<a href="http://spiceworks.tre-pi.gov.br:8000/portal" title="Abrir chamado na Central de Serviços" target="_blank" class="chamado"></a>
</div>
<div class="tutonoticias">
<h3 class="noticias">
<a href="<?php echo home_url( '/' ); ?>categoria/noticias">ÚLTIMAS NOTÍCIAS
</h3>
<ul class="noticias">
<?php query_posts('cat=3&showposts=3');
while (have_posts()) : the_post(); ?>
<li>
<strong><?php the_time('j \d\e F \d\e Y') ?></strong>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
</ul>
<h3 class="tutoriais">
<a href="<?php echo home_url( '/' ); ?>categoria/tutoriais">TUTORIAIS RECENTES</a>
</h3>
<ul class="tutoriais">
<?php query_posts('cat=1&showposts=3');
while (have_posts()) : the_post(); ?>
<li>
<strong><?php the_time('j \d\e F \d\e Y') ?></strong>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
</ul>
<span class="bottom"></span>
</div>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : endif;?>
</div>