2013-10-22 59 views
0

我想編輯我的WordPress主題,在主頁上,有一個選項可以使滑塊和橫幅與兩個部門。滑塊工作正常,但沒有出現橫幅塊。爲什麼圖中的圖像沒有出現在橫幅區域?

代碼islike:

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

但圖像沒有得到調用。 請幫助我。

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

+0

請避免張貼外部鏈接。相反,嘗試用[Fiddle](http://jsfiddle.net)複製你的問題。另外,你有什麼嘗試? – Terry

回答

0

你只是鏈接到圖片的URL。你應該把網址放在圖片標籤中:

<img src="<?php echo of_get_option('w2f_off_banner'); ?>" width="xx" height="xx">