我使用以下内部图片 - 与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
}
请你帮我看看图片没有显示。
答案 0 :(得分:0)
问题是我没有在javascript中必需的链接之后添加,
。但是我使用了;
,它不应该在javascript中的链接src之后添加。