亚马逊联盟计划不允许您从其网站下载图像并通过其服务器上传。使用亚马逊图片的一种授权方式是使用他们的API或Sitestripe。对于尚未进行任何销售的新分支机构,我们只允许使用Sitestripe。
Sitestripe从站点提取图像,但是图像以html代码的形式出现。是否可以使用上述HTML代码设置特色图像以符合亚马逊的要求?非常感谢。
亚马逊联盟计划不允许您从其网站下载图像并通过其服务器上传。使用亚马逊图片的一种授权方式是使用他们的API或Sitestripe。对于尚未进行任何销售的新分支机构,我们只允许使用Sitestripe。
Sitestripe从站点提取图像,但是图像以html代码的形式出现。是否可以使用上述HTML代码设置特色图像以符合亚马逊的要求?非常感谢。
是的,这是可能的。您只需使用regex解析HTML来获取图像URL,将其上载到uploads文件夹,然后将其设置为特色图像。
像这样:
function set_featured_image_from_html( $html, $post_id ) {
// If there are no images in the HTML, return early.
if ( ! preg_match( \'/<img\\s+.*?src=[\\"\\\']?([^\\"\\\' >]*)[\\"\\\']?[^>]*>/i\', $html, $image ) ) {
return;
}
$image_url = $image[1];
$upload_dir = wp_upload_dir();
$image_data = file_get_contents( $image_url );
$filename = basename( $image_url );
if ( wp_mkdir_p( $upload_dir[\'path\'] ) ) {
$file = $upload_dir[\'path\'] . \'/\' . $filename;
} else {
$file = $upload_dir[\'basedir\'] . \'/\' . $filename;
}
file_put_contents( $file, $image_data );
$wp_filetype = wp_check_filetype( $filename, null );
$attachment = array(
\'post_mime_type\' => $wp_filetype[\'type\'],
\'post_title\' => sanitize_file_name( $filename ),
\'post_content\' => \'\',
\'post_status\' => \'inherit\'
);
$attach_id = wp_insert_attachment( $attachment, $file, $post_id );
require_once( ABSPATH . \'wp-admin/includes/image.php\' );
$attach_data = wp_generate_attachment_metadata( $attach_id, $file );
wp_update_attachment_metadata( $attach_id, $attach_data );
set_post_thumbnail( $post_id, $attach_id );
}
您可以这样使用它:set_featured_image_from_html(\'<img src="https://picsum.photos/800">\', 29);
我正在使用启用cdn支持的wp super cache插件(aws cloudfront)。我也在使用重新加载的wp表。后一个插件通过ajax包含一个文本文件,该文件由cdn提供服务。该插件不执行任何类型的jsonp操作,因此文件会遇到访问控制允许源问题。在我去修改插件以正确提取文件之前,有人知道我如何限制cdn存储此文件,并直接提供它吗?