如何通过编程将特色图片设置为来自外部的自定义帖子
我正在尝试通过PHP提取Wordpress环境之外的图像并将其插入到自定义帖子中。 像wordpress一样,如何将图像移动/上传到wordpress上传目录年日期文件夹格式,并根据自定义帖子将该图像设置为特色图像? 还要将图像上传到自定义帖子库吗? 下面是我的代码 $filename = $image['name']; $target_path = "../wp-content/uploads/"; $target_path = $target_path . $filename; $wp_filetype = wp_check_filetype(basename($filename), null ); $wp_upload_dir = wp_upload_dir(); $attachment = array( 'guid' => $wp_upload_dir['baseurl'] . '/' . basename( $filename ), 'post_mime_type' => $wp_filetype['type'], 'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)), 'post_content' => '', 'post_status' => 'inherit', ); …