-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
80 lines (74 loc) · 2.7 KB
/
page.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
<?php
/**
* The template for displaying pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that
* other "pages" on your WordPress site will use a different template.
*
* @category TacticalWP-Theme
* @package TacticalWP
* @author Tyler Kemme <[email protected]>
* @license MIT https://opensource.org/licenses/MIT
* @version 1.0.4
* @link https://github.com/tpkemme/tacticalwp-theme
* @since 1.0.0
*/
get_header(); ?>
<?php $layout = get_post_meta(get_the_ID(), 'twp_page_layout_single', true); ?>
<?php get_template_part('template-parts/featured-image'); ?>
<?php if ( 'Page Left Sidebar' === $layout ) : ?>
<?php get_template_part('page-templates/page-sidebar-left'); ?>
<?php elseif ( 'Left & Right Sidebar' === $layout ) : ?>
<?php get_template_part('page-templates/page-sidebar-double'); ?>
<?php elseif ( 'Full Width' === $layout ) : ?>
<?php get_template_part('page-templates/page-full-width'); ?>
<?php else : ?>
<div id="page" role="main">
<?php do_action('twp_before_content'); ?>
<?php
while ( have_posts() ) :
the_post();
?>
<article <?php post_class('main-content'); ?> id="post-<?php the_ID(); ?>">
<?php $showtitle = get_post_meta(get_the_ID(), 'twp_page_title_single', true); ?>
<?php if ( 'show' === twp_get_option('twp_layout_title_show') ) : ?>
<?php if ( 'Show' === $showtitle ) : ?>
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php endif; ?>
<?php else : ?>
<?php if ( 'Show' === $showtitle ) : ?>
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php endif; ?>
<?php endif; ?>
<?php do_action('twp_page_before_entry_content'); ?>
<div class="entry-content">
<?php the_content(); ?>
<?php edit_post_link(__('Edit', 'twp'), '<span class="edit-link">', '</span>'); ?>
</div>
<footer>
<?php
wp_link_pages(
array(
'before' => '<nav id="page-nav"><p>' . __('Pages:', 'twp'),
'after' => '</p></nav>',
)
);
?>
<p><?php the_tags(); ?></p>
</footer>
<?php do_action('twp_page_before_comments'); ?>
<?php comments_template(); ?>
<?php do_action('twp_page_after_comments'); ?>
</article>
<?php endwhile; ?>
<?php do_action('twp_after_content'); ?>
<?php get_sidebar(); ?>
</div>
<?php endif; ?>
<?php
get_footer();