我试图让客人通过帖子类别在我的wordpress页面中发布活动,他们需要为帖子设置帖子缩略图和1-3张图像。我添加了带有set_post_thumbnail()的帖子缩略图,但我无法弄清楚并在wordpress手札中找到一些东西来帮助我,也许你们知道一些东西可以帮助我走上正确的道路?到目前为止,我的代码:
//Upload Image
require_once( ABSPATH . 'wp-admin/includes/image.php' );
require_once( ABSPATH . 'wp-admin/includes/file.php' );
require_once( ABSPATH . 'wp-admin/includes/media.php' );
$attachment_id = media_handle_upload('file',$post_id);
$attachment_id2 = media_handle_upload('file2',$post_id);
$attachment_id3 = media_handle_upload('file3',$post_id);
$attachment_id4 = media_handle_upload('file4',$post_id);
//Set Image as thumbnail
set_post_thumbnail($post_id, $attachment_id);
潇潇雨雨