WordPress开发函数adjacent_posts_rel_link_wp_head()
WordPress开发函数adjacent_posts_rel_link_wp_head(),为单个帖子页面显…
WordPress开发函数adjacent_posts_rel_link_wp_head(),为单个帖子页面显示与当前帖子相邻的帖子的关系链接。
用法:
adjacent_posts_rel_link_wp_head()
描述:
这意味着要附加到像’ wp_head ‘这样的操作。不要在插件或主题模板中直接调用它。
参见also
adjacent_posts_rel_link ()
来源:
文件: wp-includes/link-template.php
function adjacent_posts_rel_link_wp_head() {
if ( ! is_single() || is_attachment() ) {
return;
}
adjacent_posts_rel_link();
}
更新日志:
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!