WordPress功能函數(shù)adjacent_posts_rel_link_wp_head()
wordpress功能函數(shù)adjacent_posts_rel_link_wp_head(),為單個(gè)帖子頁(yè)面顯示與當(dāng)前帖子相鄰的帖子的關(guān)系鏈接。
用法:
adjacent_posts_rel_link_wp_head()
描述:
這意味著要附加到像' wp_head '這樣的操作。不要在插件或主題模板中直接調(diào)用它。
參見(jiàn)also
adjacent_posts_rel_link ()
來(lái)源:
文件: wp-includes/link-template.php
function adjacent_posts_rel_link_wp_head() {
if ( ! is_single() || is_attachment() ) {
return;
}
adjacent_posts_rel_link();
}