parent_post_rel_link

函数


parent_post_rel_link ( $title = '%title' )
参数
  • (string)
    $title
    Optional. Link title format. Default ‘%title’.
    Required:
    Default: ‘%title’
定义位置
  • wp-includes/deprecated.php
    , line 2789
引入
2.8.0
弃用
3.3.0

显示父项目的关系链接。

function parent_post_rel_link( $title = '%title' ) {
	_deprecated_function( __FUNCTION__, '3.3.0' );

	echo get_parent_post_rel_link($title);
}