如何使博客文章标题转到他们的永久链接

时间:2016-02-03 10:27:21

标签: php wordpress

我目前正在使用此代码尝试链接到博客文章网址。

<a href="<?php get_permalink(); ?>">
 <span class="white"><?php the_title(); ?></span></p>
</a>

此代码位于主博客页面上,当我点击帖子标题时,它会将我引导至主要博客页面

2 个答案:

答案 0 :(得分:1)

您可以使用the_permalink(),或者在get_permalink()之前添加echo。

使用get_permalink()将检索帖子的URL但不显示它。

答案 1 :(得分:0)

$postId函数中传递get_permalinkget_permalink($postId)

<a href="<?php get_permalink($postId); ?>">
    <span class="white"><?php the_title(); ?></span>
</a>