diff --git a/wp-content/themes/twentynineteen/inc/template-functions.php b/wp-content/themes/twentynineteen/inc/template-functions.php
index 2dbd0c5..3ceede6 100644
--- a/wp-content/themes/twentynineteen/inc/template-functions.php
+++ b/wp-content/themes/twentynineteen/inc/template-functions.php
@@ -419,3 +419,14 @@ function twentynineteen_hsl_hex( $h, $s, $l, $to_hex = true ) {
 
 	return "rgb($r, $g, $b)";
 }
+
+/**
+ * Add a fragment identifier (to the content) to paginated links.
+ */
+function twentynineteen_link_pages_link( $link, $i ) {
+	if ( $i > 1 && preg_match( '/href="([^"]*)"/', $link, $matches ) ) {
+		$link = str_replace( $matches[1], $matches[1] . '#content', $link );
+	}
+	return $link;
+}
+add_filter( 'wp_link_pages_link', 'twentynineteen_link_pages_link', 10, 2 );
