-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-divas.php
103 lines (103 loc) · 2.97 KB
/
page-divas.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
<div class="page-title">
<div class="w-container">
<h1 class="page-title-heading">Divas</h1>
</div>
</div>
<div class="w-container">
<div class="page-text">
<div class="w-dyn-list">
<div class="w-dyn-items w-row">
<?php
$args = array (
'post_type' => 'diva',
'numberposts' => -1,
'orderby' => 'title',
'order' => 'ASC',
'meta_query' => array(
array(
'key' => 'diva_destaque',
'value' => true
)
)
);
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post);
?>
<div class="w-dyn-item w-col w-col-6">
<a href="<?php the_permalink(); ?>" class="w-inline-block">
<div class="w-row">
<div class="w-col w-col-4">
<div class="diva-image">
<?php the_post_thumbnail('square-medium'); ?>
</div>
</div>
<div class="w-col w-col-8">
<h4 class="diva-name"><?php the_title(); ?></h4>
<p class="diva-text"><?php the_field('diva_bio'); ?></p>
</div>
</div>
</a>
</div>
<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
</div>
<!--
<div class="w-dyn-empty">
<p>No items found.</p>
</div>
-->
</div>
<div class="spacer"></div>
<div class="spacer"></div>
<h3 class="page-body-head">Colaboradoras</h3>
<div class="w-dyn-list">
<div class="w-clearfix w-dyn-items w-row">
<?php
$args = array (
'post_type' => 'diva',
'numberposts' => -1,
'orderby' => 'title',
'order' => 'ASC',
'meta_query' => array(
array(
'key' => 'diva_destaque',
'value' => 0
)
)
);
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post);
?>
<div class="w-dyn-item w-col w-col-4">
<a href="<?php the_permalink(); ?>" class="diva-link w-inline-block">
<div class="w-row">
<div class="w-col w-col-4">
<div class="diva-image">
<?php the_post_thumbnail('square-small'); ?>
</div>
</div>
<div class="w-col w-col-8">
<h4 class="diva-name"><?php the_title(); ?></h4>
</div>
</div>
</a>
</div>
<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
</div>
<!--
<div class="w-dyn-empty">
<p>No items found.</p>
</div>
-->
</div>
<div class="spacer"></div>
<h3 class="page-body-head">Créditos</h3>
<p class="credits-text">
Webdesign: <a href="http://marlus.com" target="_blank">Marlus Araujo</a>
<br>Design gráfico: Octavio Mendes
</p>
</div>
</div>