如何在Wordpress子主题中为图像提供正确的路径

时间:2018-05-25 05:21:44

标签: php wordpress

如何在wordpress子主题索引页面中提供样式背景图片路径。我试过但它不起作用。我在这里给了我的代码。

<div class="item" style="background: url('<?php echo 
 get_stylesheet_directory_uri(); ?>/images/about-banner.jpg')">

1 个答案:

答案 0 :(得分:0)

use below code.
<div class="item" style="background: url('<?php echo 
 get_template_directory_uri(); ?>/images/about-banner.jpg')">