Title: &quot;Next Article&quot;/&quot;Previous Article&quot;
Last modified: August 24, 2016

---

# "Next Article"/"Previous Article"

 *  [alikkerr](https://wordpress.org/support/users/alikkerr/)
 * (@alikkerr)
 * [11 years ago](https://wordpress.org/support/topic/next-articleprevious-article/)
 * How can I change the “Next Article”/”Previous Article” to “Next Recipe”/”Previous
   Recipe” at the bottom of the posts?
 * [http://www.kerrkitchen.com](http://www.kerrkitchen.com)

Viewing 1 replies (of 1 total)

 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [11 years ago](https://wordpress.org/support/topic/next-articleprevious-article/#post-6076726)
 * Hi A
 * You can do it by adding the following set of codes at the bottom of your theme’s**
   functions.php** file. Like always I would ask you to do the following change 
   using [a child theme](http://www.sourcexpress.com/wordpress-child-themes-use/),
   so this change along with any further change would remain preserved.
 *     ```
       function se_change_previous_text( $output, $format, $link, $post, $adjacent ) {
       	$output = str_replace( 'Previous Article', 'Previous Recipe', $output );
   
       	return $output;
       }
       add_filter( 'previous_post_link', 'se_change_previous_text', 10, 5 );
   
       function se_change_next_text( $output, $format, $link, $post, $adjacent ) {
       	$output = str_replace( 'Next Article', 'Next Recipe', $output );
   
       	return $output;
       }
       add_filter( 'next_post_link', 'se_change_next_text', 10, 5 );
       ```
   
 * Thanks

Viewing 1 replies (of 1 total)

The topic ‘"Next Article"/"Previous Article"’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/fashionistas/1.9/screenshot.png)
 * Fashionistas
 * [Support Threads](https://wordpress.org/support/theme/fashionistas/)
 * [Active Topics](https://wordpress.org/support/theme/fashionistas/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/fashionistas/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/fashionistas/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/next-articleprevious-article/#post-6076726)
 * Status: not resolved