我正在嘗試鏈接到來自style.css的WordPress插件文件夾中的圖像。我試過以下,但不工作:如何從style.css鏈接到WordPress插件文件夾?
.example {
background: url(images/photo.jpg) center center no-repeat;
}
Plugins文件夾圖片: /wp-content/plugins/my-plugin/images/photo.jpg
樣式表是這裏: /wp-content/themes/my-theme/style.css
在您的插件文件夾中添加css和圖像使用插件url獲取此內容。 –
我不想有很多CSS文件 – henrywright