我正在尝试迁移一个我自己手工编写的网站,现在我必须将其作为wordpress主题。我在使用索引中使用的不同图像时遇到问题。html,它们无法加载-在开发工具控制台上出现404错误-。
我的问题是,where should i put my images and how can I succesfully retrieve them in my new theme? 我是否将它们都放在img/文件夹中?还是必须通过媒体上传?
图像范围从img标记到嵌入式svg对象,例如:
<img src="img/Logos-crear.png">
<object>
<embed src="img/icons/twitter.svg">
</object>
和使用css的背景图像:
.header .header-img {
background: url("../img/main.jpg");
}