我是数据库的新手,我正在讨厌它。
受影响的表格的结构如下:
1)表:wp_tdpp_commentmeta
--------------------------------------------
meta_id comment_id meta_key meta_value
--------------------------------------------
1 18 secretid private
--------------------------------------------
2 19 secretid public
--------------------------------------------
...
2)表:wp_tdpp_comments
------------------------------------------------------
comment_ID comment_post_ID ..... comment_content
------------------------------------------------------
18 14 .... Comment Content for this comment_id
19 14 ... ditto
...
------------------------------------------------------
" wp_tdpp_commentmeta"是一个自定义注释元字段,用户在撰写评论时会输入该字段。
我想检查一下'meta_value'的价值。对于当前的comment_ID是"私有"或"公开。"
答案 0 :(得分:0)
可以使用“get_comment_meta()”检索自定义字段的值。有关“get_comment_meta”功能的详细信息,请参阅https://codex.wordpress.org/Function_Reference/get_comment_meta。