php 附件图像Wordpress
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 附件图像Wordpress相关的知识,希望对你有一定的参考价值。
function Generate_Featured_Image( $image_url, $post_id ){
$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 );
$res1= wp_update_attachment_metadata( $attach_id, $attach_data );
$res2= set_post_thumbnail( $post_id, $attach_id );
}
以上是关于php 附件图像Wordpress的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress附件图像
PHP 显示WordPress帖子的第一个图像附件
php 从其URL获取图像的WordPress附件ID
php 从其URL获取图像的WordPress附件ID
PHP 使用帖子附件的Wordpress图像库短代码
PHP 获取wordpress图像附件并使用tim thumb进行裁剪