图像未在WordPress中显示。

时间:2014-04-08 12:23:29

标签: php wordpress image themes

我使用以下内部图片 - 与functions.php相关联的选项。单击“提交”按钮时,它会在WordPress管理员中崩溃。

<th scope="row">Image 1:</th> 
<td>
<input type="text" name="director_image1" value="<?php print get_option('director_image1'); ?>" />
<br/>
</td>
</tr>

我使用它来获取header.php中的图像。

var theImage=<?php $image = get_option('director_image1');?>
<?php if( $image) : ?>
<?php echo "'".$image."';"; ?>
<?php endif; ?>

最后我在javascript文件中使用了image变量:

{
 src: theImage
 fade: 3000
 }

请你帮我看看图片没有显示。

1 个答案:

答案 0 :(得分:0)

问题是我没有在javascript中必需的链接之后添加,。但是我使用了;,它不应该在javascript中的链接src之后添加。