无法使用关系字段类型提前自定义字段来获取帖子

时间:2016-07-19 07:30:09

标签: php wordpress advanced-custom-fields

  

您好我有一个类型的游戏和游戏文档。在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' => '='
                                )
                            )
                        );
  

添加了屏幕截图。请检查Advance custom field section

game-docs post type section

0 个答案:

没有答案