Definition:
function previous_post_link($format='« %link', $link='%title', $in_same_cat = false, $excluded_categories = '') {}
Display previous post link that is adjacent to the current post.
Parameters
- string $format: Optional. Link anchor format.
- string $link: Optional. Link permalink format.
- bool $in_same_cat: Optional. Whether link should be in a same category.
- array|string $excluded_categories: Optional. Array or comma-separated list of excluded category IDs.
Source code
function previous_post_link($format='« %link', $link='%title', $in_same_cat = false, $excluded_categories = '') { adjacent_post_link($format, $link, $in_same_cat, $excluded_categories, true); }
2617
No comments yet... Be the first to leave a reply!