In WordPress, given the ID of a comment is it possible to get the ID of the post that the comment is attached to?
For example, comment with ID 1642 is attached to post with ID 172
Thanks
In WordPress, given the ID of a comment is it possible to get the ID of the post that the comment is attached to?
For example, comment with ID 1642 is attached to post with ID 172
Thanks
You must be logged in to post a comment.
You could use
get_comment()
https://codex.wordpress.org/Function_Reference/get_comment Make sure to read the parameters for the function in the above link. You must pass a variable containing an integer with this function.