在wordpress中的文本小部件中显示图像

时间:2011-10-25 13:49:31

标签: image wordpress path widget

我想在文本小部件中显示图像(存储在我自己的网站上)。

我在wp-admin界面的文本小部件中输入以下代码:

<b>See on the map</b> <br> <i>Get Directions</i>
<IMG SRC="<?php 
  bloginfo('template_directory'); ?>/buon-appetitoDrottingatan.jpg"         
   ALT="Buon Appetito!" WIDTH=170 HEIGHT=130px>

    <br>Drottingatan, 67 Stockholm, Tel: 08-11-22-33

但图片未显示。文本小部件的路径是什么?

提前致谢

2 个答案:

答案 0 :(得分:2)

你不能在文本小部件中使用php,你必须直接硬编码img。

即:

<b>See on the map</b> <br> <i>Get Directions</i>
<img src="http://yoursite.com/wp-content/themes/yourthemefolder/buon-appetitoDrottingatan.jpg" alt="Buon Appetito!" width="170" height="130px" />
<br>Drottingatan, 67 Stockholm, Tel: 08-11-22-33

在图像托管网站上托管或托管该文件并从中链接..

答案 1 :(得分:0)

如果您想使用侧边栏中发布的php代码或任何未来的代码snipets,您可以使用以下wordpress插件执行此操作:

http://wordpress.org/extend/plugins/php-code-widget/

您可以使用您的代码。如果您有大量代码,这是实用的。