Definition:
function next_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '') {}
Display relational link for the next post adjacent to the current post.
Parameters
- string $title: Optional. Link title 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 next_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '') { echo get_adjacent_post_rel_link($title, $in_same_cat, $excluded_categories = '', false); }
2451
No comments yet... Be the first to leave a reply!