-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-cultura-infantil.php
196 lines (153 loc) · 6.92 KB
/
page-cultura-infantil.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
/**
* Template Name: Cultura Infantil
*/
get_header( 'nucleos' ); ?>
<div id="primary">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h2><?php the_title(); ?></h2>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- #main -->
</div><!-- #page -->
<div id="segundo-content">
<div id="page" class="sub-page">
<div id="esquerda-home">
<h2>Histórico</h2>
<?php $cat_cultura_infantil = get_category_by_slug('cultura-infantil');
$cat_cultura_infantil = $cat_cultura_infantil->term_id; ?>
<?php query_posts( 'showposts=4&cat='.$cat_cultura_infantil.'' ); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="cada">
<div class="home-thumb">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail( 'thumb-home' );
} else { ?>
<?php thumb_default(); ?>
<?php } ?>
</div><!-- .home-thumb -->
<div class="direita-home-cada">
<div class="home-title">
<h1><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
</div><!-- .home-title -->
<div class="home-summary">
<?php the_excerpt('Read on...'); ?>
</div><!-- .home-summary -->
</div><!-- .direita-home-cada -->
</div><!-- .cada -->
<?php endwhile; ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #esquerda-home -->
<div id="direita-home">
<div id="agenda-home">
<h2>Agenda</h2>
<!-- Inicio Loop -->
<?php
$args = array(
'post_type' => 'agenda',
'posts_per_page' => '6', /* Quantidade de Posts a exibir */
'taxonomy' => 'cat_agenda',
'term' => 'cultura-infantil',
'caller_get_posts'=> 1,
"meta_key" => "agenda-event-date", // Change to the meta key you want to sort by
"orderby" => "meta_value", // This stays as 'meta_value' or 'meta_value_num' (str sorting or numeric sorting)
"order" => "DESC"
);
$loop = query_posts( $args );
while ( have_posts() ) : the_post();
global $post;
//Pega a data escolhida no admin e grava em $ag_data, $ag_inicio...
$ag_data = get_post_meta($post->ID,'agenda-event-date',TRUE);
$ag_hora_inic = get_post_meta( $post->ID, 'agenda_horario_inic', true);
$ag_local = get_post_meta( $post->ID, 'agenda_local', true);
// Seta a data atual - 1 dia
$datahoje = date('Y/m/d');
$dataexpira = strtotime( $datahoje );
// Transforma a $ag_data em tempo
$ag_data_time = strtotime( $ag_data );
$data_invertida = $ag_data;
/* Quebra a Data em 3 */
$data_explode = explode("/", $data_invertida);
$mes = $data_explode[1];
switch ($mes){
case 1: $mes="Janeiro"; break;
case 2: $mes="Fevereiro"; break;
case 3: $mes="Março"; break;
case 4: $mes="Abril"; break;
case 5: $mes="Maio"; break;
case 6: $mes="Junho"; break;
case 7: $mes="Julho"; break;
case 8: $mes="Agosto"; break;
case 9: $mes="Setembro"; break;
case 10: $mes="Outubro"; break;
case 11: $mes="Novembro"; break;
case 12: $mes="Dezembro"; break;
default: $mes="Valor invalido";
}
?>
<div class="evento-agenda">
<?php
// Condição: Se a data do evento for maior ou igual que a data de expiração, exibe normalmente!
if ( $ag_data_time >= $dataexpira ) { ?>
<div class="cada cada-agenda">
<?php } ?>
<?php
// Condição: Se a data do evento for menor que a data de expiração, exibe alterado!
if ( $ag_data_time < $dataexpira ) { ?>
<div class="cada cada-agenda passado">
<?php } ?>
<div class="esquerda-evento-agenda">
<div class="dia-agenda"><a href="<?php the_permalink(); ?>"><?php echo $data_explode[2]; ?></a></div>
<div class="mes-agenda"><a href="<?php the_permalink(); ?>"><?php echo $mes; ?></a></div>
<div class="hora-agenda"><a href="<?php the_permalink(); ?>"><?php echo $ag_hora_inic; ?></a></div>
</div><!-- .esquerda-evento-agenda -->
<div class="direita-evento-agenda">
<div class="titulo-agenda"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<div class="local-agenda"><a href="<?php the_permalink(); ?>"><?php echo $ag_local; ?></a></div>
<div class="mais-agenda"><a href="<?php the_permalink() ?>">Veja mais>></a></div>
</div><!-- .direita-evento-agenda -->
</div><!-- .cada -->
</div><!-- #evento-agenda -->
<?php endwhile; ?>
<!-- Loop -->
<div class="toda-agenda">
<a href="<?php home_url( '/' ); ?>agenda">Veja toda agenda>></a>
</div><!-- .toda-agenda -->
</div><!-- #agenda-home -->
<div id="botoes-home">
<div id="botao-atividades">
<?php
$grade = get_theme_mod ('url_field_grade');
?>
<a class="a-botao-atividades" href="<?php echo $grade; ?>" target="_blank">
<h3>Atividades</h3>
<p>Clique para fazer o download.</p>
</a>
</div><!-- #botao-atividades -->
</div><!-- #botoes-home -->
</div><!-- #direita-home -->
<div class="hack-clear"></div>
</div><!-- #page -->
<?php get_footer( 'nucleos' ); ?>