如何在wordpress中使用类添加图像?

时间:2016-08-31 10:48:19

标签: wordpress

我使用了一些代码来使用css来查看图像..

//的style.css

.image_link{
 background: url(http://localhost/wordpress/wp-content/uploads/2016/08/images.png) 100% 100% no-repeat;
 width:291;
 height:182;
}

我在帖子编辑器中称它为

<img class="image_link" alt="wp" />

但它没有用..任何人都可以帮助我......

enter image description here

看到第一个地方(wordpress)这里没有图片出现.. 另外一些内容都是我在wordpress的后期编辑器中直接使用图片网址所以只有它出现比wordpress内容...你能解决这个问题..

enter image description here

如果我去检查那个显示它的元素..

enter image description here

你能看到吗?

无论你在评论中发送了什么,我都在我的style.css文件中添加了.. 仍然没有显示图像..

1 个答案:

答案 0 :(得分:-1)

请使用内联CSS。

<img style="background-image:url(<?php echo get_template_directory_uri()?>/imagedirectory)"/>