Wordpress - 按自定义字段查询帖子

时间:2015-08-01 22:28:49

标签: php wordpress custom-fields

我希望通过我在自己的网页上创建的自定义字段来查询我的帖子。但是自定义字段是一组值。所以自定义字段' country'可能看起来像这样

country =>美国,非洲,英国,波兰

让我感到困惑的是,如何使用自定义字段查询帖子,该字段是一个与'分隔的数组?'?

我在这里尝试了很多解决方案但没有成功。

非常感谢任何帮助!

2 个答案:

答案 0 :(得分:0)

你写过“美国,非洲,英国,波兰”作为一把钥匙的价值吗?

那将是一个字符串,而不是一个数组。

答案 1 :(得分:0)

https://codex.wordpress.org/Taxonomies

public static string getValue(Dictionary<string, string> input, string searchCriteria)
{
    return input.ContainsKey(searchCriteria) ? input[searchCriteria] : "";
}