您可以将图像设置为媒体库中的帖子精选缩略图。要在媒体库中添加图像,您需要将其上传到服务器。
试试这个代码:
// Add Featured Image to Post
$image_url = 'http://s.wordpress.org/style/images/wp-header-logo.png'; // Define the image URL here
$image_name = 'wp-header-logo.png';
$upload_dir = wp_upload_dir(); // Set upload folder
$image_data = file_get_contents($image_url); // Get image data
$unique_file_name = wp_unique_filename( $upload_dir['path'], $image_name ); // Generate unique name
$filename = basename( $unique_file_name ); // Create image file name
// Check folder permission and define file location
if( wp_mkdir_p( $upload_dir['path'] ) ) {
$file = $upload_dir['path'] . '/' . $filename;
} else {
$file = $upload_dir['basedir'] . '/' . $filename;
}
// Create the image file on the server
file_put_contents( $file, $image_data );
// Check image file type
$wp_filetype = wp_check_filetype( $filename, null );
// Set attachment data
$attachment = array(
'post_mime_type' => $wp_filetype['type'],
'post_title' => sanitize_file_name( $filename ),
'post_content' => '',
'post_status' => 'inherit'
);
// Create the attachment
$attach_id = wp_insert_attachment( $attachment, $file, $post_id );
// Include image.php
require_once(ABSPATH . 'wp-admin/includes/image.php');
// Define attachment metadata
$attach_data = wp_generate_attachment_metadata( $attach_id, $file );
// Assign metadata to attachment
wp_update_attachment_metadata( $attach_id, $attach_data );
// And finally assign featured image to post
set_post_thumbnail( $post_id, $attach_id );
参考网址: http: //www.wpexplorer.com/wordpress-featured-image-url/
根据您的要求修改:或者该目的忽略 WordPress 标准并将您的所有帖子单张图片上传到您的自定义文件夹中,并将此图片路径或直接外部图片网址添加到帖子中作为额外的属性元字段,当您将在您的主题上显示帖子时,只需在帖子 ID 的帮助下使用您的 img。演示代码:用于设置图像
<?php
update_post_meta ( 7, 'imgkey', 'www.url.path' );//7 is post id
?>
用于在要显示的主题页面上获取图像
<?php
$img_value = get_post_meta( get_the_ID(), 'imgkey', true );
?>
<img src="<?php echo $img_value?>">
请注意,如果您是 WordPress 发布自定义元字段的新手,请阅读这篇文章:
https
://codex.wordpress.org/Custom_Fields或
关于自定义字段的非官方文章:https ://premium.wpmudev.org/blog/creating-custom-字段-手动