上传新图片时,我想从图片标题中清除默认的“文件名”。我尝试使用下面的代码没有运气。
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 );
}