-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-videos-e-fotos.php
46 lines (31 loc) · 1.42 KB
/
page-videos-e-fotos.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
<?php /* Template name: Fotos e Videos */ get_header( 'single-e-pages' ); ?>
<div id="conteudo-single-cpt">
<div id="esquerda-single-cpt">
<div id="fotos-videos">
<div id="btn-fotos">
<a class="a-btn-fotos" href="<?php bloginfo( 'url' ); ?>/fotos-e-videos/"></a>
</div><!-- #btn-fotos -->
<div id="btn-videos">
<a class="a-btn-videos" href="<?php bloginfo( 'url' ); ?>/videos-do-circo-vox"></a>
</div><!-- #btn-videos -->
</div><!-- #fotos-videos -->
<div id="post-single-cpt">
<!-- Inicio Loop -->
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_front_page() ) { ?>
<?php } ?>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; ?>
<!-- Fim Loop -->
</div><!-- #post-single-cpt -->
</div><!-- #esquerda-single-cpt -->
<?php get_sidebar( 'single-e-pages' ); ?>
</div><!-- #conteudo-single-cpt -->
<?php get_footer( 'espetaculos' ); ?>