我想将图像设置为帖子的特色图像.我在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设置图像作为帖子的特色图像?
基础教程推荐
猜你喜欢
- dedecms织梦全局变量调用方法总结 2023-07-08
- dedecms根据来访IP区域自动跳转对应页面的方法 2022-07-21
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08
- 织梦dedecms调用当前栏目文章数的方法 2022-11-08
- dedecms织梦无需登录注册可下单购买的修改 2022-11-04
- dedecms织梦cms常用判断语句汇总 2022-06-24
- pbootcms网站自动清理runtime缓存方法 2023-07-09
- pbootcms二次开发必须要了解的后台目录结构 2023-07-09
- 织梦DedeCMS搜索指定多个栏目文档的办法 2022-11-11
- 织梦dedecms如何在dede:sql中使用[field:global.autoindex/] 2022-08-27