Title: Single Post Pagination in same category? only
Last modified: March 4, 2024

---

# Single Post Pagination in same category? only

 *  Resolved [MarialKa](https://wordpress.org/support/users/marialka/)
 * (@marialka)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/single-post-pagination-in-same-category-only/)
 * Hi. Tried to set-up (single) post pagination “Previous” and “Next” links in same
   category using theme function.php file but without success
 * Please, could you share an example snippet? Many thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Herman Asrori (BSF)](https://wordpress.org/support/users/bsfherman/)
 * (@bsfherman)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/single-post-pagination-in-same-category-only/#post-17488260)
 * Hi [@marialka](https://wordpress.org/support/users/marialka/),
 * Try the following snippet
 *     ```
       add_filter( 'astra_single_post_navigation', 'ast_post_navigation' );
       function ast_post_navigation () {
       	$arr = array(
       		'next_text' => '%title',
       		'prev_text' => '%title',
       		'in_same_term' => true,
       	);
           return $arr;
       }
       ```
   
 * FYI, we don’t offer support when it comes to customization and/or custom code.
   If the snippet above doesn’t work, I will leave this to the community. Hope someone
   will share an insight about it.
 * Kind regards,
    Herman 😊
 *  Thread Starter [MarialKa](https://wordpress.org/support/users/marialka/)
 * (@marialka)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/single-post-pagination-in-same-category-only/#post-17498115)
 * Great… many thanks [@bsfherman](https://wordpress.org/support/users/bsfherman/)
   to share this custom snippet
 * For now I should find by myself 😉 how to add arrow.
 * PS: do you know if a pagination option (same category or all posts) is inclued
   in the dashboard customizer of premium version ?
 *  Thread Starter [MarialKa](https://wordpress.org/support/users/marialka/)
 * (@marialka)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/single-post-pagination-in-same-category-only/#post-17505728)
 * Missed 😉 this “mark as resolved”

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Single Post Pagination in same category? only’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/astra/4.13.0/screenshot.jpg)
 * Astra
 * [Support Threads](https://wordpress.org/support/theme/astra/)
 * [Active Topics](https://wordpress.org/support/theme/astra/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/astra/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/astra/reviews/)

## Tags

 * [next](https://wordpress.org/support/topic-tag/next/)
 * [pagination](https://wordpress.org/support/topic-tag/pagination/)
 * [previous](https://wordpress.org/support/topic-tag/previous/)

 * 3 replies
 * 2 participants
 * Last reply from: [MarialKa](https://wordpress.org/support/users/marialka/)
 * Last activity: [2 years, 1 month ago](https://wordpress.org/support/topic/single-post-pagination-in-same-category-only/#post-17505728)
 * Status: resolved