diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-content/themes/twentysixteen/single.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/wp/wp-content/themes/twentysixteen/single.php Mon Oct 14 17:39:30 2019 +0200
@@ -0,0 +1,54 @@
+
+
+
+
+ _x( 'Published in%title', 'Parent post link', 'twentysixteen' ),
+ ) );
+ } elseif ( is_singular( 'post' ) ) {
+ // Previous/next post navigation.
+ the_post_navigation( array(
+ 'next_text' => '' . __( 'Next', 'twentysixteen' ) . ' ' .
+ '' . __( 'Next post:', 'twentysixteen' ) . ' ' .
+ '%title',
+ 'prev_text' => '' . __( 'Previous', 'twentysixteen' ) . ' ' .
+ '' . __( 'Previous post:', 'twentysixteen' ) . ' ' .
+ '%title',
+ ) );
+ }
+
+ // End of the loop.
+ endwhile;
+ ?>
+
+
+
+
+
+
+
+
+