我使用wordpress默认wp_mail.php来获取电子邮件帖子。现在我想从电子邮件中获取附件并将其与帖子一起发布。如果没有任何插件我怎么能这样做?
提前致谢。
答案 0 :(得分:0)
$args = array(
'post_type' => 'attachment',
'numberposts' => null,
'post_status' => null,
'post_parent' => $post->ID
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
echo apply_filters('the_title', $attachment->post_title);
the_attachment_link($attachment->ID, false);
}
}