the_permalink()
the_permalink( int|WP_Post $post ) 显示当前文章的永久链接。 Display…
the_permalink( int|WP_Post $post )
显示当前文章的永久链接。
Displays the permalink for the current post.
目录锚点:#参数#源码#笔记
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$post | (int | WP_Post) | Post ID或Post对象。默认值为全局$post。 |
源码(Source)
/** * Display the permalink for the current post. * * @since 1.2.0 */ function the_permalink() { /** * Filter the display of the permalink for the current post. * * @since 1.5.0 * * @param string $permalink The permalink for the current post. */ echo esc_url( apply_filters( 'the_permalink', get_permalink() ) ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
4.4.0 | wp-includes/link-template.php | 13 | 9 |
笔记(Notes)
用作带标题标记的链接
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!