WordPress输出文章固定链接标签:the_permalink

2022/07/13

WordPress模板标签the_permalink用于输出文章的固定链接,即伪静态形式的链接地址,需要用在The Loop主循环中。

the_permalink( $post = 0 )

该函数没有参数,事实上the_permalink()函数相当于调用了get_permalink( $post ),将当前文章对象传递给了get_permalink()函数并输出返回的结果。

函数使用示例

<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注