-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
140 lines (117 loc) · 3.32 KB
/
Copy pathcontent.php
File metadata and controls
140 lines (117 loc) · 3.32 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
/**
* The template for displaying posts within the loop.
*
* @package BlogPress
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> <?php blogpress_do_microdata( 'article' ); ?>>
<div class="inside-article">
<?php
blogpress_featured_page_header_inside_single();
/**
* Fires at the top of the article, before the entry header.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_before_content', 'content' );
if ( blogpress_show_entry_header() ) :
?>
<header <?php blogpress_do_attr( 'entry-header' ); ?>>
<?php
/**
* Fires inside the entry header, before the entry title.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_before_entry_title', 'content' );
if ( blogpress_show_title() ) {
$params = blogpress_get_the_title_parameters();
the_title( $params['before'], $params['after'] );
}
/**
* Fires inside the entry header, after the entry title.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_after_entry_title', 'content' );
blogpress_post_meta();
?>
</header>
<?php
endif;
/**
* Fires after the entry header, before the featured image.
*
* Fires even when the entry header itself is disabled.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_after_entry_header', 'content' );
blogpress_post_image();
$itemprop = '';
if ( 'microdata' === blogpress_get_schema_type() ) {
$itemprop = ' itemprop="text"';
}
if ( blogpress_show_excerpt() ) :
?>
<div class="entry-summary"<?php echo $itemprop; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Literal attribute string built above; escaping would break the markup. ?>>
<?php
/**
* Fires immediately before the post content or excerpt is output.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_before_content_output', 'content' );
the_excerpt();
?>
</div>
<?php else : ?>
<div class="entry-content"<?php echo $itemprop; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Literal attribute string built above; escaping would break the markup. ?>>
<?php
/** This action is documented in content.php */
do_action( 'blogpress_before_content_output', 'content' );
the_content();
wp_link_pages(
array(
'before' => '<div class="page-links">' . __( 'Pages:', 'blogpress' ),
'after' => '</div>',
)
);
?>
</div>
<?php
endif;
/**
* Fires after the entry content or excerpt wrapper closes.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_after_entry_content', 'content' );
blogpress_footer_meta();
/**
* Fires at the bottom of the article, inside the article wrapper.
*
* @since 1.0.0
*
* @param string $context The template part being rendered.
*/
do_action( 'blogpress_after_content', 'content' );
?>
</div>
</article>