Created
August 4, 2015 08:56
-
-
Save salmanbd96/45faa1bc76a8538b7774 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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