后台添加友情链接 前台不显示 请高手指点

2016-07-07 15:41 来源:www.chinab4c.com 作者:ecshop专家



后台添加友情链接 前台不显示 是什么原因?
请高手指点

回答:
高手都去哪了?在线等答案啊

查看模板.是否正常。或者查看你的友情连接函数。是否正常。打印数组

能说得更清楚点吗?

print_r(index_get_links())看看

没找到

index.php

调用文件是哪个?

index.php中

执行

print_r(index_get_links()))看看是什么东西//

<div><img src="themes/huha/images/helpbg.gif"></div>
<div class="helpTitBg clearfix">
<?php if ($this->_var['helps']): ?>
<?php $_from = $this->_var['helps']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }; $this->push_vars('', 'help_cat');$this->_foreach['help'] = array('total' => count($_from), 'iteration' => 0);
if ($this->_foreach['help']['total'] > 0):
foreach ($_from AS $this->_var['help_cat']):
$this->_foreach['help']['iteration']++;
?>
<dl>

<dt class="ip<?php echo $this->_foreach['help']['iteration']; ?>"><?php echo $this->_var['help_cat']['cat_name']; ?></dt>
<?php $_from = $this->_var['help_cat']['article']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }; $this->push_vars('', 'item');if (count($_from)):
foreach ($_from AS $this->_var['item']):
?>
<dd><a href="<?php echo $this->_var['item']['url']; ?>" title="<?php echo htmlspecialchars($this->_var['item']['title']); ?>"><?php echo $this->_var['item']['short_title']; ?></a></dd>
<?php endforeach; endif; unset($_from); ?><?php $this->pop_vars();; ?>
</dl>
<?php endforeach; endif; unset($_from); ?><?php $this->pop_vars();; ?>
<?php endif; ?>
</div>

用的DW不知道怎么执行

不是这个。这个是帮助中心的模板。。。

那你说是哪个啊

index.php中打印数组



foreach ($res AS $row)
{
if (!empty($row['link_logo']))
{
$links['img'][] = array('name' => $row['link_name'],
'url'=> $row['link_url'],
'logo' => $row['link_logo']);
}
else
{
$links['txt'][] = array('name' => $row['link_name'],
'url'=> $row['link_url']);
}
}