1

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

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

1 回答 1

0

首先检查这个答案,或者您也可以尝试以下代码片段(将代码粘贴到您的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;
}
于 2013-04-16T17:08:45.877 回答