adjacent_posts_rel_link_wp_head()
Displays relational links for the posts adjacent to the current post for single post pages.
This is meant to be attached to actions like wp_head. Do not call this directly in plugins or theme templates.
No Hooks.
Return
null
. Ничего (null).
Usage
adjacent_posts_rel_link_wp_head();
Notes
Changelog
Since 3.0.0 | Introduced. |
Since 5.6.0 | No longer used in core. |
adjacent_posts_rel_link_wp_head() adjacent posts rel link wp head code WP 6.3
function adjacent_posts_rel_link_wp_head() { if ( ! is_single() || is_attachment() ) { return; } adjacent_posts_rel_link(); }