如何使用GET_PERMALINK显示POST_TITLE? 时间:2014-01-23 作者:dkl 我想用get\\u permalink显示文章标题,而不是指向它的链接。get_permalink($comment->comment_post_ID) 只显示该帖子的链接! 2 个回复 SO网友:dkl 谢谢大家!我可以通过以下方式解决此问题:<a href=\'".get_permalink($comment->comment_post_ID)."\'>".get_the_title($comment->comment_post_ID)."</a> SO网友:Ben Wainwright 在循环内部,您可以使用<?php the_title() ?> the_title或其他任何地方,试试看<?php echo get_the_title( $comment->comment_post_ID ) ?> get_the_title 结束 文章导航