start_post_rel_link

函数
start_post_rel_link ( $title = '%title', $in_same_cat = false, $excluded_categories = '' )
参数
  • (string) $title Optional. Link title format.
    Required:
    Default: '%title'
  • (bool) $in_same_cat Optional. Whether link should be in a same category.
    Required:
    Default: false
  • (string) $excluded_categories Optional. Excluded categories IDs.
    Required:
    Default: (empty)
定义位置
相关方法
parent_post_rel_linkget_parent_post_rel_linkprev_post_rel_linknext_post_rel_linkget_post_reply_link
引入
2.8.0
弃用
3.3.0

start_post_rel_link:这个钩子用于添加或修改单篇文章的标题部分的HTML链接标签。这个标签用于指定当前文档和链接文档之间的关系。

显示第一个文章的关系链接。

function start_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '') {
	_deprecated_function( __FUNCTION__, '3.3.0' );

	echo get_boundary_post_rel_link($title, $in_same_cat, $excluded_categories, true);
}

常见问题

FAQs
查看更多 >