Skip to content

Instantly share code, notes, and snippets.

@salmanbd96
Created August 4, 2015 08:56
Show Gist options
  • Save salmanbd96/45faa1bc76a8538b7774 to your computer and use it in GitHub Desktop.
Save salmanbd96/45faa1bc76a8538b7774 to your computer and use it in GitHub Desktop.
Adding this PHP code to your wordpress theme will display image links for your next and previous posts. Upload images to your theme with the name next.png and prev.png.
<?php
next_post_link( '%link', '<img src="' . get_bloginfo('stylesheet_directory') . '/img/prev.png" />');
?>
<?php
previous_post_link('%link', '<img src="' . get_bloginfo('stylesheet_directory') . '/img/next.png" />' );
?>
www.salmancreation.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment