php 自动添加标题/ alt /描述到图像上传
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自动添加标题/ alt /描述到图像上传相关的知识,希望对你有一定的参考价值。
//////////////////////////////////////////////////////////////
///////// AUTO ATTACHMENT TITLE, ALT AND DESCRIPTION
//////////////////////////////////////////////////////////////
add_action( 'add_attachment', 'ced_add_image_meta_data' );
function ced_add_image_meta_data( $attachment_ID ) {
$removes = array('big', 'small', 'header', 'featured', 'grid');
$filename = $_REQUEST['name']; // or get_post by ID
$withoutExt = preg_replace('/\\.[^.\\s]{3,4}$/', '', $filename);
$withoutExt = str_replace($removes, '', $withoutExt);
$withoutExt = str_replace(array('-','_'), ' ', $withoutExt);
$my_post = array(
'post_title' => $withoutExt, // title
'ID' => $attachment_ID,
'post_content' => $withoutExt, // description
);
wp_update_post( $my_post );
// update alt text for post
update_post_meta($attachment_ID, '_wp_attachment_image_alt', $withoutExt );
}
以上是关于php 自动添加标题/ alt /描述到图像上传的主要内容,如果未能解决你的问题,请参考以下文章
在 PHP 中调整图像大小
在图像上自动添加 alt
PHP 将Missing Alt标签添加到图像 - WordPress内容过滤器
在使用 PHP 上传到临时目录之前检查图像的文件大小
向轮播添加 Alt 标签
将裁剪添加到 PHP 图像调整大小脚本