0

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

提前致谢。

4

1 回答 1

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);
    }
}
于 2013-09-13T07:12:42.580 回答