WordPress获取固定链接函数:get_permalink

WordPress模板函数get_permalink用于获取文章的固定链接,也就是伪静态链接,需要用在The …

WordPress模板函数get_permalink用于获取文章的固定链接,也就是伪静态链接,需要用在The Loop主循环中,如果在主循环之外使用,需要传递文章ID或包含文章信息的对象。

get_permalink( int|WP_Post $post = 0, bool $leavename = false )

函数参数

$post

整数或对象,默认值:当前文章的ID

提供一个文章ID或包含文章信息的对象,输出该文章的固定链接。

$leavename

布尔值,默认值:false

如果为true,则固定链接设置中的%postname%将原样输出,而不是输出文章名称。

函数使用示例

<?php echo '<a href="' . get_permalink() . '">' . get_the_title() . '</a>'; ?>

扩展阅读

get_permalink()函数位于:wp-includes/link-template.php

相关函数:

  • permalink_anchor()
  • the_permalink()
  • post_permalink()
  • permalink_single_rss()
类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册