WordPress输出文章固定链接函数:the_permalink
WordPress模板函数the_permalink用于输出文章的固定链接,即伪静态形式的链接地址,需要用在T…
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>
扩展阅读
the_permalink()函数位于:wp-includes/link-template.php
相关函数:
- permalink_anchor()
- get_permalink()
- post_permalink()
- permalink_single_rss()
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!