一直在尝试几件事,但无济于事......搜索过,也许还不够好!
我的帖子有上传的音频文件和/或有Soundcloud链接(这是一个自定义字段)。
现在我想要返回有Soundcloud链接,上传文件或两者都有的帖子。
$arguments = array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'post_mime_type' => 'audio',
'order' => 'DES',
'orderby' => 'parent',
'numberposts' => -1,
);
$attachments = get_posts($args);
我目前使用的是什么。当然,这仅返回具有音频附件的帖子。
我一直在尝试'relation'
和'meta_query'
选项,但失败了。也许我做错了什么。我想我可以在if / else语句中使用2个不同的get_posts();
来完成此操作。但我想避免重复代码。
希望足够清楚。