在WordPress的wp_posts
表中,我有post_type = 'venue'
。我正试图通过以下查询获取美国的所有场地:
SELECT * FROM `wp_posts` WHERE `post_type` = 'venue' and `post_title` = 'United States'
但是我有0场比赛。并且它100%确定我有现有的场地。有任何想法吗 ? 国家美国处于其他post_type称为“地点”
答案 0 :(得分:0)
如果你有一个单独的post_type
个地方,United States
就是其中一个地方,那么你的查询什么都不做。
您的查询正在搜索venue
post_type
作为United States
的{{1}}。
如果post_title
将成为places
的属性,则需要将其设置为venues
。