We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea582b commit 080f9c6Copy full SHA for 080f9c6
1 file changed
single-post.php
@@ -4,10 +4,10 @@
4
$date = RH_Helpers::get_date_values( $post->post_date );
5
6
$context = array(
7
- 'the_title' => get_the_title(),
8
- 'display_date' => $date->display_date,
9
- 'machine_date' => $date->machine_date,
10
- 'featured_image' => RH_Media::render_image_from_post(
+ 'the_title' => get_the_title(),
+ 'display_date' => $date->display_date,
+ 'machine_date' => $date->machine_date,
+ 'featured_image' => RH_Media::render_image_from_post(
11
$post->ID,
12
array(
13
'link_url' => get_the_post_thumbnail_url( $post->ID, 'original' ),
@@ -16,6 +16,6 @@
16
),
17
)
18
19
- 'the_content' => apply_filters( 'the_content', get_the_content() ),
+ 'the_content' => apply_filters( 'the_content', get_the_content() ),
20
);
21
Sprig::out( 'single-post.twig', $context );
0 commit comments