我遇到问题,如何显示目标数据库中存储的图像和网址 这是我的格式代码:
<a href="<?php echo get_settings('home'); ?>" style="border:0;">
<img src="<?php echo get_settings('home');?>/banner/728x90.JPG" width="728" height="90"/>
</a>
此代码存储在数据库中
<a href=\"<?php echo get_settings(\'home\'); ?>\"
style=\"border:0;\">
<img src=\"<?php echo get_bloginfo(\'template_directory\');?>/banner/728x90.JPG\"
width=\"728\" height=\"90\"/>
</a>
我打电话使用:
stripslashes(get_option("bh"));
结果
<a href="<?php echo get_settings('home'); ?>" style="border:0;">
<img src="<?php echo get_bloginfo('template_directory');?>/banner/728x90.JPG" width="728" height="90"/>
</a>
$bh = html_entity_decode(get_option("bh"));
结果
\" style=\"border:0;\"> /banner/728x90.JPG\" width=\"728\"
height=\"90\"/>
我所做的一切仍然无法将图像与网址结合在一起。