函数原型
adjacent_posts_rel_link_wp_head()
函数描述
Displays relational links for the posts adjacent to the current post for single post pages.
是否弃用
未弃用
函数参数
无
函数返回值
无
函数位置
File: wp-includes/link-template.php.
函数源码
function adjacent_posts_rel_link_wp_head() {
if ( ! is_single() || is_attachment() ) {
return;
}
adjacent_posts_rel_link();
}
源码链接
变更日志
| Version | Description |
|---|---|
| 5.6.0 | No longer used in core. |
| 3.0.0 | Introduced. |

