2011-12-02 109 views
0

我怎樣才能使這個工作?提前致謝!!!我認爲首先應該回聲工作,但它不...它打印出的URL文本,而不是顯示圖像...WordPress模板目錄

<?php 
     if (is_tree(18)) { 
     echo '<img src="' . bloginfo('template_directory') . '/img/icon-trans.png" />'; 
     } else if (is_tree(20)) { 
      echo "<img src='/~cecmsite/wp-content/themes/commonwealth/img/iconIndustrial-trans.png' />"; 
     } else if (is_tree(22)) { 
      echo "<img src='/~cecmsite/wp-content/themes/commonwealth/img/iconInstitutional-trans.png' />"; 
     } else if (is_tree(24)) { 
      echo "<img src='/~cecmsite/wp-content/themes/commonwealth/img/iconComm-trans.png' />"; 
     } else if (is_tree(27)) { 
      echo "<img src='/~cecmsite/wp-content/themes/commonwealth/img/iconService-trans.png' />"; 
     } else if (is_tree(39)) { 
      echo "<img src='/~cecmsite/wp-content/themes/commonwealth/img/iconTraffic-trans.png' />"; 
     } else { 
     echo ""; 
     } 
     ?> 
+0

您是否已經在一個PHP代碼塊,或不??? –

+0

是的,我。謝謝閱讀! –

回答

1

而不是使用代碼bloginfo( 'template_directory')使用get_bloginfo( 'template_directory')

+0

完美的作品!謝謝你們倆!!! –

0

你不應該打開另一個PHP模塊,因爲這將打破你的代碼。

使用連接而不是:

echo '<img src="' . get_bloginfo('template_directory') . '/img/icon-trans.png" />'; 
+0

我更新了我的原始帖子,以顯示我正在嘗試執行的操作。非常感謝您的幫助! –

+0

我仍然無法完成它的任何其他想法?非常感謝... –