我正在使用 wordpress 默认 wp_mail.php 来获取电子邮件帖子。现在我想从电子邮件中获取附件并将它们与帖子一起发布。没有任何插件我怎么能做到这一点?
提前致谢。
我正在使用 wordpress 默认 wp_mail.php 来获取电子邮件帖子。现在我想从电子邮件中获取附件并将它们与帖子一起发布。没有任何插件我怎么能做到这一点?
提前致谢。
你的意思是像:
$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);
}
}