如何清除Wordpress 3.5上传的默认附件标题?

时间:2013-04-16 16:14:26

标签: image wordpress attachment uploader wordpress-3.5

我想在上传新图片时清除图片标题中的默认“文件名”。我尝试使用下面的代码没有运气。

    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 );    
    }

1 个答案:

答案 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;
}