-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-page-with-sidebar.php
92 lines (69 loc) · 2.25 KB
/
template-page-with-sidebar.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
<?php
/* Template Name: Page with sidebar */
get_header();
$radiuzz_cassiopeia_pagetitle_bg = get_field("cassiopeia_pagetitle_background_image");
$radiuzz_cassiopeia_pagetitle_title = get_field("cassiopeia_pagetitle_title");
$radiuzz_cassiopeia_pagetitle_desc = get_field("cassiopeia_pagetitle_description");
if(have_posts()) : while(have_posts()) : the_post();
?>
<div class="wrapper">
<div class="<?php echo esc_attr(($radiuzz_cassiopeia_pagetitle_bg) ? 'home-photography' : 'home-photography no-page-bg'); ?>">
<div class="head-photo" style="background-image: url(<?php echo esc_url($radiuzz_cassiopeia_pagetitle_bg); ?>);"></div>
<div class="title-holder">
<div class="page-title">
<h2>
<?php
if($radiuzz_cassiopeia_pagetitle_title){
echo esc_attr($radiuzz_cassiopeia_pagetitle_title);
}
else {
echo the_title();
}
?>
</h2>
<hr class="special">
<span><?php echo esc_attr($radiuzz_cassiopeia_pagetitle_desc); ?></span>
</div>
</div>
<div class="<?php echo esc_attr(($radiuzz_cassiopeia_pagetitle_bg) ? 'mouse' : 'display-none'); ?>"></div>
</div>
<div class="blog blog-single">
<div class="container">
<div class="row">
<div class="col-md-9 col-sm-9 col-xs-12">
<div class="blog-post ">
<div class="post-content">
<div class="details">
<a href="<?php echo esc_attr(get_the_author_link()); ?>"><?php the_author(); ?></a>
<span><?php the_time('F j, Y'); ?></span>
</div>
<?php the_content(); ?>
<div class="tags">
<?php
$before = '';
$seperator = ' ';
$after = '';
the_tags( $before, $seperator, $after );
?>
</div>
</div>
<div class="comments">
<?php comments_template(); ?>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<?php if ( is_active_sidebar( 'sidebar-1' ) ) { ?>
<ul>
<?php get_sidebar(); ?>
</ul>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
<?php
endwhile; endif;
get_footer();
?>