我想限制宽度最大为600px的图像上传使用“全尺寸”在可湿性粉剂帖子/页面部分的图像选项。
我尝试了两种方法:
Method 1:
将以下内容添加到样式中。主题css:
.post img {
max-width: 600px; /* Adjust this value according to your content area size*/
height: auto;
}
Method 2:
将以下内容添加到函数顶部。php:
$GLOBALS[\'content_width\'] = 600;
他们两个都不工作。全尺寸选项在中不可用
Settings > Media请帮忙。