0

我正在尝试编辑我的 WordPress 主题。在主页上,有一个选项可以让滑块和横幅分为两个部分。滑块工作正常,但没有出现横幅块。

代码就像:

<div id="banner-block"> 
    <div class="head-banner">   
        <?php echo of_get_option('w2f_off_banner'); ?>  
    </div>

但是图像没有被调用。

我的网站:http ://www.dailydiscountdeals.in/

4

1 回答 1

0

您只是链接到图像的 URL。您应该将网址放在图像标签中:

<img src="<?php echo of_get_option('w2f_off_banner'); ?>" width="xx" height="xx">
于 2013-10-22T17:23:47.467 回答