-
Notifications
You must be signed in to change notification settings - Fork 7
/
menu-eixos.php
32 lines (30 loc) · 1.07 KB
/
menu-eixos.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
<div class="menu-submenu eixo">
<div class="panel panel-submenu">
<div class="panel-heading clearfix"><h6 class="panel-title pull-left">Eixos em debate</h6>
<button type="button" class="btn btn-default btn-xs fecha-menu-eixo pull-right" title="Econder este menu"><i
class="fa fa-angle-up"></i></button>
</div>
<div class="panel-body vertical">
<div class="menu" style="display:none;">
<ul>
<?php
// Gera os modais de eixos
$query_eixos = new WP_Query( "post_type=eixo-de-debate&orderby=menu_order&order=asc&posts_per_page=-1" );
if ( $query_eixos->have_posts() ) {
while ( $query_eixos->have_posts() ) {
$query_eixos->the_post();
?>
<li class="page_item"><a href="javascript:void(0)" data-toggle="modal"
data-target="#modal-<?php the_ID(); ?>"
style="color: <?php echo get_post_meta( get_the_ID(), '_cor_eixo', true ); ?>"><?php the_title(); ?></a>
</li>
<?php
}
}
wp_reset_query();
?>
</ul>
</div>
</div>
</div>
</div>