通过在wp_postmeta表中找到的帖子元数据选择一个帖子

时间:2018-07-10 17:18:40

标签: php mysql wordpress elasticsearch

如何通过在@Retention(RUNTIME) @SuppressWarnings("javadoc") @Target(METHOD) @RepeatedTest(AcceptanceTestUtil.MAX_WEBBROWSER_COUNT) @Tag("AcceptanceTest") @Test // <- bug lies here, conflicts with @RepeatedTest public @interface AcceptanceTest { } 表中找到的帖子元数据来选择帖子?最好使用ElasticPress。

wp_postmeta

我从ElasticPress documentation找到了这个示例,但是我不确定这是查询正确的表(wp_postmeta),并且我还想检查发布元数据中是否有特定值,而不是发布中中继键...

编辑:

我在下面尝试过此方法,但此查询未返回任何内容。我设置new WP_Query( array( 's' => 'meta search phrase', 'search_fields' => array( 'post_title', 'post_content', 'post_excerpt', 'meta' => array( 'meta_key_1', 'meta_key_2' ), ), ) ); 'key' => 'foo_listing_syndication',,其中'value' => $term,是搜索文本,$termfoo_listing_syndication表的meta_key列中的键。这是不正确的吗?请参见wp_postmeta表的屏幕截图。在wp_postmeta列中找到了我要搜索的$term

meta_value

enter image description here

0 个答案:

没有答案