permalink_link

函数
permalink_link ( No parameters )
相关
  • the_permalink()
定义位置
相关方法
permalink_anchorpermalink_single_rssthe_permalinkget_permalinkthe_permalink_rss
引入
0.71
弃用
1.2.0

permalink_link: 该函数用于输出当前文章的固定链接。它需要三个参数。$post_id, $leavename, 和$sample。$post_id参数是可选的,允许你指定一个当前文章以外的文章ID。$leavename参数也是可选的,允许你指定是否在固定链接中包括文章名称。$sample参数用于生成一个固定链接样本。

打印循环中的当前文章的固定地址。

function permalink_link() {
	_deprecated_function( __FUNCTION__, '1.2.0', 'the_permalink()' );
	the_permalink();
}

常见问题

FAQs
查看更多 >