WordPress模板目录

时间:2011-12-02 02:17:26

标签: wordpress

我怎样才能让它发挥作用?提前致谢!!!我认为第一个回声应该有效,但它没有...它在文本中打印出URL而不是显示图像...

<?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 "";
      }
      ?>

2 个答案:

答案 0 :(得分:1)

使用get_bloginfo('template_directory')

而不是使用bloginfo('template_directory')

答案 1 :(得分:0)

你不应该打开另一个PHP块,因为这会破坏你的代码。

改为使用连接:

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