-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
102 lines (90 loc) · 4.28 KB
/
single.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
93
94
95
96
97
98
99
100
101
102
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Event_Listing
*/
get_header();
?>
<?php if (have_posts()) : ?>
<section class="page-header-wrapper">
<div class="container">
<div class="row">
<div class="column column-12">
<header class="page-header">
<?php
the_title('<h1 class="entry-title">', '</h1>');
if ('post' === get_post_type()) :
?>
<div class="entry-meta">
<?php
while (have_posts()) :
the_post();
event_listing_posted_on();
event_listing_posted_by();
endwhile; // End of the loop.
?>
</div><!-- .entry-meta -->
<?php endif;
?>
</header><!-- .page-header -->
</div> <!-- .column -->
</div> <!-- .row -->
</div> <!-- .container -->
</section>
<section class="main-contain-wrapper">
<div class="container">
<div class="row">
<div class="<?php echo event_listing_primary_column_class(); ?>">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
while (have_posts()) :
the_post();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php event_listing_post_thumbnail(); ?>
<div class="entry-content">
<?php
the_content(sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Continue reading<span class="screen-reader-text"> "%s"</span>', 'event-listing'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
));
wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'event-listing'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php event_listing_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php
the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if (comments_open() || get_comments_number()) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div> <!-- .column -->
<?php do_action('event_listing_sidebar'); ?>
</div> <!-- .row -->
</div> <!-- .container -->
</section>
<?php
endif;
get_footer();