要添加文本或图像水印到WordPress网站的图片,可以按照以下步骤进行操作:
添加文本水印:
添加文本水印的示例代码:
img {
position: relative;
}
img:after {
content: 'Your Watermark Text';
position: absolute;
bottom: 10px;
right: 10px;
color: #fff;
font-size: 14px;
background: rgba(0, 0, 0, 0.5);
padding: 5px;
}
将上述代码添加到WordPress主题的自定义CSS中即可。
添加图像水印:
添加图像水印的示例代码:
img {
position: relative;
}
img:after {
content: url('your-watermark-image-url.png');
position: absolute;
bottom: 10px;
right: 10px;
opacity: 0.5;
}
将上述代码添加到WordPress主题的自定义CSS中,把your-watermark-image-url.png
替换为先前复制的水印图片URL即可。
这样,你就成功地为WordPress网站的图片添加了文本或图像水印。