-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-metodo.php
65 lines (63 loc) · 2.12 KB
/
template-metodo.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
<?php
/**
*
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
*
* Template name: Metodo Suzuki
*
* @package coletivo
*/
get_header();
$args = array(
'post_type' => 'page',
'posts_per_page' => -1,
'post_parent' => get_the_ID(),
'order' => 'ASC',
'orderby' => 'menu_order'
);
$query = new WP_Query( $args );
?>
<div id="fullpage">
<?php while( have_posts() ) : the_post(); ?>
<?php $style = '';?>
<?php if ( has_post_thumbnail() ) : ?>
<?php $image = get_the_post_thumbnail_url( get_the_ID(), 'large' );?>
<?php $style = sprintf( 'background-image:url(%s);', $image );?>
<?php endif;?>
<section class="section section-type-metodo" style="<?php echo $style;?>">
<div class="container">
<h3 class="section-title col-md-1">
<?php the_title();?>
</h3><!-- .section-title col-md-2 -->
<div class="col-md-10 pull-right content">
<div class="content-itself">
<?php the_content();?>
</div><!-- .content-itself -->
</div><!-- .col-md-9 pull-right content -->
</div><!-- .container -->
</section><!-- .section-type-metodo -->
<?php endwhile;?>
<?php if ( $query->have_posts() ) : ?>
<?php while( $query->have_posts() ) : $query->the_post(); ?>
<?php global $post;?>
<?php $style = '';?>
<?php if ( has_post_thumbnail() ) : ?>
<?php $image = get_the_post_thumbnail_url( get_the_ID(), 'large' );?>
<?php $style = sprintf( 'background-image:url(%s);', $image );?>
<?php endif;?>
<section class="section section-type-metodo" style="<?php echo $style;?>" id="<?php echo $post->post_name;?>">
<div class="container">
<h3 class="section-title col-md-1">
<?php the_title();?>
</h3><!-- .section-title col-md-2 -->
<div class="col-md-10 pull-right content wow fadeInUp" data-wow-delay="850ms" data-wow-duration="1100ms">
<div class="content-itself">
<?php the_content();?>
</div><!-- .content-itself -->
</div><!-- .col-md-9 pull-right content -->
</div><!-- .container -->
</section><!-- .section-type-metodo -->
<?php endwhile;?>
<?php endif;?>
</div><!-- #fullpage -->
<?php get_footer();