zibll子比主题附件自定义前缀名

综合评论1,552,786字数 243阅读0分48秒

/wp-content/themes/zibll/inc/options/admin-options.php

//新增自定义文案文件名前缀开关
                'custom' => __('自定义文案', 'zib_language'),
                //新增自定义文案文件名前缀开关end
            ),
                //新增自定义文案文件名前缀
                'desc'       => __('选择上传文件重命名的格式', 'zib_language'),
            ),
            array(
                'dependency' => array('newfilename_type', '==', 'custom'),
                'title'      => __('自定义文案', 'zib_language'),
                'subtitle'   => __('输入自定义的文案作为文件名前缀', 'zib_language'),
                'id'         => 'newfilename_custom_text',
                'type'       => 'text',
                'default'    => '',
            ),
            //新增自定义文案文件名前缀end
  • /wp-content/themes/zibll/inc/functions/zib-attachment.php
  • function zib_new_filename($file)
    {
        $newfilename_type = _pz('newfilename_type');
        if ($newfilename_type === 'random') {
            $info         = pathinfo($file['name']);
            $ext          = empty($info['extension']) ? '' : '.' . $info['extension'];
            $md5          = md5($file['name']);
            $file['name'] = substr($md5, 0, 10) . current_time('YmdHis') . $ext;
        } elseif ($newfilename_type === 'time') {
            $file['name'] = current_time('YmdHis') . mt_rand(10, 99) . mt_rand(0, 9) . '-' . $file['name'];
        } elseif ($newfilename_type === 'custom') {
            $custom_text  = _pz('newfilename_custom_text');
            $file['name'] = $custom_text . '-' . $file['name'];
        }
    
        return $file;
    }
    
    if (_pz('newfilename')) {
        add_filter('wp_handle_upload_prefilter', 'zib_new_filename', 99);
        add_filter('wp_handle_sideload_prefilter', 'zib_new_filename', 99);
    }

     文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/1022.html

文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/1022.html文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/1022.html
继续阅读
搜狗搜索引擎
搜狗搜索引擎 综合

搜狗搜索引擎

搜狗搜索引擎搜狗搜索引擎是全球第三代互动式搜索引擎,支持微信公众号和文章搜索、知乎搜索、英文搜索及翻译等。通过自主研发的人工智能算法为用户提供专业、精准、便捷的搜索服务。搜狗搜索引擎以其独有的Sogo...
一键修复文件权限教程
一键修复文件权限教程 综合

一键修复文件权限教程

public_html目录默认的权限应为:750public_html里的文件夹权限应为:755public_html里的文件权限应该为:644如果权限不正确可能导致网站不能正常访问(比如访问提示40...
  • 本文由 admin 发表于 2024年8月24日 21:51:11
  • 转载请务必保留本文链接:https://bbs.50-0.cn/1022.html
  • 前缀名
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定