我在简报中使用图像缓存作为我的横幅图片。上传并将图像发送到邮件。问题是图像第一次没有加载。如果我再次来编辑页面,它将发送带有正确图像的邮件
$output = "
<html>
<body>";
$output.= theme( 'imagecache', 'banner_img', 'images/motel_wright-1.1.png', 'Wright Motel', 'Wright Motel' );
$output.= "
</body>
</html>";
print $output;
请帮帮我
答案 0 :(得分:0)
我遇到过类似的问题。几点建议:
1)当您使用主题功能时,您可能需要重建注册表。试试
http://api.drupal.org/api/drupal/includes!theme.inc/function/drupal_theme_rebuild/7
2)如果上述操作失败,您将需要使用xdebug并找出drupal中哪个函数没有被触发。
请在此发布您的发现。