在Wordpress中,您可以从评论ID中获取帖子ID

bad*_*der 4 wordpress

在Wordpress中,给定注释的ID是否可以获取注释附加到的帖子的ID?

例如,ID为1642的评论附加到ID为172的帖子

谢谢

And*_*ren 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 ;
?> 
Run Code Online (Sandbox Code Playgroud)