我目前正在使用此代码尝试链接到博客文章网址。
<a href="<?php get_permalink(); ?>">
<span class="white"><?php the_title(); ?></span></p>
</a>
此代码位于主博客页面上,当我点击帖子标题时,它会将我引导至主要博客页面
答案 0 :(得分:1)
您可以使用the_permalink(),或者在get_permalink()之前添加echo。
使用get_permalink()将检索帖子的URL但不显示它。
答案 1 :(得分:0)
在$postId
函数中传递get_permalink
。 get_permalink($postId)
<a href="<?php get_permalink($postId); ?>">
<span class="white"><?php the_title(); ?></span>
</a>