我想在上传新图片时清除图片标题中的默认“文件名”。我尝试使用下面的代码没有运气。
add_action( 'add_attachment', 'my_upload_title', 99 );
function my_upload_title( $attachment_ID ) {
$the_post = array();
$the_post['ID'] = $attachment_ID;
$the_post['post_title'] = '';
wp_update_post( $the_post );
}
答案 0 :(得分:0)
首先检查this answer,您也可以尝试以下代码段(将代码粘贴到functions.php
文件中)
add_filter( 'wp_get_attachment_image_attributes', 'remove_image_text');
function remove_image_text( $attr ) {
unset($attr['alt']);
unset($attr['title']);
return $attr;
}