(adjacent)_post_rel_link
Filters the adjacent post relational link.
The dynamic portion of the hook name, $adjacent, refers to the type of adjacency, 'next' or 'previous'.
Possible hook names include:
Usage
add_filter( '(adjacent)_post_rel_link', 'wp_kama_adjacent_post_rel_link_filter' ); /** * Function for `(adjacent)_post_rel_link` filter-hook. * * @param string $link The relational link. * * @return string */ function wp_kama_adjacent_post_rel_link_filter( $link ){ // filter... return $link; }
- $link(string)
- The relational link.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
wp-includes/link-template.php 2086
return apply_filters( "{$adjacent}_post_rel_link", $link );