标签: php mysql wordpress
我正在写一个wordpress插件,我需要用他们的数据导出所有评论,包括发表评论的帖子的URL
$args = array(); $comments_query = new WP_Comment_Query; $comments = $comments_query->query( $args );
我现在使用这个代码,它只返回与评论相关的数据post_id,但我需要帖子的URL。 任何帮助将不胜感激。