在Wordpress中,鉴于评论的ID是否可以获取评论附加到的帖子的ID?
例如,ID为1642的评论附加到ID为172的帖子
由于
答案 0 :(得分:5)
您可以使用get_comment()
https://codex.wordpress.org/Function_Reference/get_comment请务必阅读上述链接中的功能参数。您必须使用此函数传递包含整数的变量。
<?php
$my_id = 7;
$comment_id_7 = get_comment( $my_id );
$comment_post_id = $comment_id_7->comment_post_ID ;
?>