这是我的查询:
SELECT ID FROM wp_posts
WHERE post_type = 'vreb_property'
AND post_status = 'publish'
ORDER BY post_modified DESC
在这种情况下,我需要修改我的查询以包含WHERE post_parent = ID
...所以我需要使用正在选择的 ID。
SELECT ID FROM wp_posts WHERE post_type = 'vreb_property' ... and also select records where 'post_parent' = ID
因为有些记录是post_type
我需要抓取的“附件”。
我能不能只看几眼来澄清这个请求的有效性?谢谢。