-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-espetaculos.php
37 lines (23 loc) · 1000 Bytes
/
page-espetaculos.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
<?php /* Template name: Espetáculos */ get_header( 'espetaculos' ); ?>
<div id="conteudo-espetaculos">
<div id="esquerda-espetaculos">
<div id="titulo-espetaculos">
</div><!-- #titulo-espetaculos -->
<div id="post-espetaculos">
<!-- Inicio Loop -->
<?php
$args = array( 'post_type' => 'espetaculos', 'posts_per_page' => 10 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="post-espetaculos">
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a>
</div><!-- .post-espetaculos -->
<?php endwhile;
?>
<!-- Fim Loop -->
<div class="saibamais-post-espetaculos"></div>
</div><!-- #post-espetaculos -->
</div><!-- #esquerda-espetaculos -->
<?php get_sidebar( 'espetaculos' ); ?>
</div><!-- #conteudo-espetaculos -->
<?php get_footer( 'espetaculos' ); ?>