我正在尝试在页脚的左侧投放横幅广告,所以我有这样的东西:
[横幅] [页脚信息]
这是基本横幅模块中的代码:
<div class="content">
<?php
$content = '';
// if no active banner in the specified banner group then the box will not show
if ($banner = zen_banner_exists('dynamic', $banner_box_group)) {
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent centeredContent">';
$content .= zen_display_banner('static', $banner);
$content .= '</div>';
}
echo $content;
?>
</div>
在主页上效果很好(它显示了我期望的广告)。但是,它不会在其他一些页面上显示任何广告。我希望这与侧边栏有关,因为它在广告选择不显示的页面上被关闭。我错过了什么?