您好我有一个类型的游戏和游戏文档。在Games Docs中,我有一个字段游戏过滤器(game_filter),我在游戏分类中下拉,只能选择一个选项。现在我想做的是当我在单人游戏时。我希望用game_filter字段显示游戏文档帖子的内容。 This link where Plugin has shown how to accomplish this but not useful in my case
尝试了此代码,但没有正常工作
$inerargs = array(
'post_type' => 'game-docs',
'meta_query' => array(
array(
'key' => 'game_filter', // name of custom field
'value' => '"' . get_the_ID() . '"',
'compare' => '='
)
)
);