我想将图片设置为帖子的特色图片。我在wordpress文档中找到了这段代码,它将图像保存在上传目录中,但图像不再设置为帖子的特色图片(代码中的37)。
你能看一下吗?非常感谢<?php
$wp_filetype = wp_check_filetype(basename($filename), null );
$wp_upload_dir = wp_upload_dir();
$attachment = array(
'guid' => $wp_upload_dir['url'] . '/' . basename( $filename ),
'post_mime_type' => $wp_filetype['type'],
'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
'post_content' => '',
'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment( $attachment, $filename, 37 );
// you must first include the image.php file
// for the function wp_generate_attachment_metadata() to work
require_once(ABSPATH . 'wp-admin/includes/image.php');
$attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
wp_update_attachment_metadata( $attach_id, $attach_data );
?>
答案 0 :(得分:3)
据我所知,你想在图片右侧使用图像作为特色图片?
那你为什么不在帖子上使用后端精选图片浏览选项。在那里你可以简单地将图像作为特色上传,你可以在你的页面上使用此代码显示特色图像 the_post_thumbnail( $size, $attr );
答案 1 :(得分:3)
您需要在代码末尾添加以下行:
// add featured image to post
add_post_meta($post_id, '_thumbnail_id', $attach_id);