排序
让WordPress后台媒体库支持WebP格式图片上传和显示
将以下代码添加到当前主题的 functions.php //让 WordPress 支持 WebP 格式图片上传 function bzg_filter_mime_types( $array ) { $array['webp'] = 'image/webp'; return $array; } add_filter...
Openlitespeed WordPress .htaccess
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^/index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]...