标签: php wordpress content-management-system custom-wordpress-pages
我目前有自定义帖子类型帖子中其他帖子的链接。我正在使用get_the_permalink($otherPostId);建立此链接。
get_the_permalink($otherPostId);
问题在于,即使我将其他帖子中的正确ID传递给该功能,它也会返回此刻我发布的帖子的链接,而不是帖子的链接我想要。
我还尝试了the_permalink($otherPostId)和get_permalink($otherPostId)并获得了相同的结果。它以前工作,但我不知道现在发生了什么。
the_permalink($otherPostId)
get_permalink($otherPostId)