-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-pratica-lista.php
executable file
·93 lines (85 loc) · 3.14 KB
/
content-pratica-lista.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
<?php
/**
* The default template for displaying content.
*
* Used for both single and index/archive/author/catagory/search/tag.
*
* @package Odin
* @since 2.2.0
*/
?>
<article class="row cada-pratica-lista " id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h2 class="entry-title"><span>Nome da prática: </span><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
?>
<div class="entry-meta">
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<h4>Descrição</h4>
<div class="col-sm-3 entry-thumb" id="thumb-pratica">
<?php if (has_post_thumbnail($post->ID )){
echo get_the_post_thumbnail( $post->ID, 'pratica-lista');
}
else{
echo '<img width="200" height="200" src="'. get_template_directory_uri().'/assets/images/sem-foto.jpg" class="attachment-pratica-lista size-pratica-lista wp-post-image" alt="Sem Imagem" >';
}?>
</div>
<div id="resumo" class="col-sm-9 entry-content">
<p >
<?php
echo get_field('resumo_da_pratica');
?>
</p>
</div><!-- .entry-content -->
<div class="clearfix"></div>
<footer class="entry-meta">
<h4>Identificação</h4>
<div class="col-sm-4 identificacao">
<p><span>Nome da entidade ou responsável: </span><?php echo get_field('nome_da_entidade');?></p>
<p><span>Telefone:</span> <?php echo get_field('telefone_da_entidade');?></p>
</div>
<div class="col-sm-4 identificacao" id='estado-entidade'>
<?php
$results = $wpdb->get_results( 'SELECT cod_estados, sigla
FROM '.$wpdb->prefix.'w_estados
WHERE cod_estados='.get_field('uf').'
ORDER BY sigla', OBJECT );
foreach ($results as $key ) {
echo '<p><span>Estado: </span>'. $key->sigla.'</p>';
}
$results = $wpdb->get_results( 'SELECT cod_cidades, nome
FROM '.$wpdb->prefix.'w_cidades
WHERE cod_cidades='.get_field('cidade').'
ORDER BY nome', OBJECT );
foreach ($results as $key ) {
echo '<p><span>Cidade: </span>'. $key->nome.'</p>'; }
?>
</div>
<div class="col-sm-4 identificacao" class='tema'>
<?php $tema= wp_get_post_terms( $post->ID, 'tema', array('count'=>1, 'parent'=>0));?>
<!-- testa tema -->
<?php if (isset($tema[0]->name)) {?>
<p><span>Tema: </span><?php echo $tema[0]->name ?></p>
<?php $subtema=(wp_get_post_terms($post->ID,'tema', array('parent'=>$tema[0]->term_id)));?>
<!-- testa subtema -->
<?php if (isset($subtema[0]->name)) {?>
<p><span>Subtema: </span><?php echo $subtema[0]->name; ?></p>
<?php $subtema2=(wp_get_post_terms($post->ID,'tema', array('parent'=>$subtema[0]->term_id)));?>
<!-- testa sub2 -->
<?php if (isset($subtema2[0]->name)) {?>
<p><span>Subtema: </span><?php echo $tema[0]->name ?></p>
<?php } ?>
<!-- testa sub2 -->
<?php } ?>
<!-- testa subtema -->
<?php } ?>
<!-- testa tema -->
</div>
<div class="col-sm-4 identificacao" id='telefone-responsavel'>
</div>
<div class="clearfix"></div>
</footer>
<div class="saiba"><a href=" <?php echo get_permalink($post->id ); ?> ">Conheça a prática</a></div>
<div class="clearfix"></div>
<hr>
</article><!-- #post-## -->