@@ -26,11 +26,12 @@ public function override()
     {
         return [
             'title' => $this->title(),
+            'pagination' => $this->pagination(),
         ];
     }
 
     /**
-     * Returns the post title.
+     * Retrieve the post title.
      *
      * @return string
      */
@@ -66,4 +67,18 @@ public function title()
 
         return get_the_title();
     }
+
+    /**
+     * Retrieve the pagination links.
+     *
+     * @return string
+     */
+    public function pagination()
+    {
+        return wp_link_pages([
+            'echo' => 0,
+            'before' => '<p>' . __('Pages:', 'sage'),
+            'after' => '</p>',
+        ]);
+    }
 }