图像使用位置,关于新的WordPress主题

时间:2016-10-27 作者:randomguy04

我正在尝试迁移一个我自己手工编写的网站,现在我必须将其作为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");
}

1 个回复
SO网友:Kanon Chowdhury

使用此代码并重命名索引。要索引的html。php。

<img src="<?php bloginfo(\'template_directory\'); ?>/img/Logos-crear.png">
<object>
<embed src="<?php bloginfo(\'template_directory\'); ?>/img/icons/twitter.svg">
这应该行得通。无需更改css代码。