wordpress代码从电子邮件发送附件

时间:2013-09-13 07:08:17

标签: wordpress

我使用wordpress默认wp_mail.php来获取电子邮件帖子。现在我想从电子邮件中获取附件并将​​其与帖子一起发布。如果没有任何插件我怎么能这样做?

提前致谢。

1 个答案:

答案 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);
    }
}