-
Notifications
You must be signed in to change notification settings - Fork 0
/
modal.php
37 lines (31 loc) · 1.1 KB
/
modal.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
<?php
/**
* Created by PhpStorm.
* User: root
* Date: 05/08/14
* Time: 17:52
*/ ?>
<div id="triangulo-close-modal"></div>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="modal-quinta" class="row modal-<?php echo get_post_type();?>">
<div class="imagem-modal col-md-4 ">
<?php the_post_thumbnail();?>
<?php if($url = get_post_meta(get_the_ID(), 'oembed_url', true)):?>
<div class="player-soundcloud-url-modal" data-id="<?php echo get_the_ID();?>" data-url="<?php echo $url;?>" style="display:none;"></div><!-- #player-soundcloud-url-modal -->
<div class="player-soundcloud" id="play-modal-<?php echo get_the_ID();?>" data-url="<?php echo $url;?>"></div>
<?php endif;?>
</div>
<div id="container-modal-titulo" class="col-md-8">
<div id="fundo-modal-titulo" class="col-md-12">
<div class="col-md-6" id="tiangulo-modal"></div>
<h1 class="col-md-6"><?php the_title(); ?></h1>
</div>
<div class="col-md-12">
<?php the_content();?>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>