让WordPress后台媒体库支持WebP格式图片上传和显示
将以下代码添加到当前主题的 functions.php //让 WordPress 支持 WebP 格式图片上传 function bzg_filter_mime_types( $array ) { $array['webp'] = 'image/webp'; return $array; } add_filter...
解决宝塔的Fail2ban出现Please start the Fail2ban service first!
SSH yum update && yum install epel-release yum install fail2ban systemctl start fail2bansystemctl enable fail2ban systemctl start fail2ban && systemctl enable fail2...