Zendfox主题网址为图片?我正在使用它,但没有工作:
<img src="<?php echo $this->getThemeurl(''); ?>" alt="My Logo" />
答案 0 :(得分:1)
<img src="<?php echo $this->themeUrl('images/urimage-name.ext'); ?>" alt="No Image" />
答案 1 :(得分:1)
你必须在zendfox框架中的xml文件中定义你的css和js:
档案路径:zendfox\application\views\web\core\default\layout\fox.xml
像这样:
<link href="css/style.css" type="text/css" rel="stylesheet" />
答案 2 :(得分:1)
以下代码在img标签中用于在Zendfox中获取图像
<img src="<?php echo $this->getThemetUrl('images/image.jpg') ?>" alt="No Image"/>