我想将图像设置为帖子的特色图像.我在wordpress文档中找到了这段代码,它将图像保存在上传目录中,但图像不再设置为帖子的特色图像(代码中的37).你能看一下吗?非常感谢?php$wp_filetype = wp_check_filetype(basena...

我想将图像设置为帖子的特色图像.我在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 );
?>
解决方法:
据我所知你想在图片右侧使用图片作为特色图片?
那你为什么不在帖子上使用后端精选图片浏览选项.在那里你可以简单地将图像作为特色上传,你可以在你的页面上用这个代码显示特色图像the_post_thumbnail($size,$attr);
沃梦达教程
本文标题为:如何在WordPress上使用php设置图像作为帖子的特色图像?


猜你喜欢
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08
- dedecms织梦列表页标题增加页码的方法 2022-07-22
- 怎么安装使用PbootCMS网站模板 2023-07-08
- 织梦DedeCMS如何实现文章列表隔行换色变样式 2023-07-08
- pbootcms文章插入图片不固定宽高的办法 2023-07-08
- pbootcms去除ueditor编辑器图片自动添加的title和alt属性 2023-07-08
- PbootCMS伪静态配置教程以及各web容器配置规则 2023-07-08
- 织梦dedecms点击数统计控制(刷新页面不新增点击数) 2022-07-20
- 织梦采集标题不完整的解决方法,修改标题长度 2022-07-14
- 织梦dedecms最全的清除文档的sql语句 2022-06-24