广告未出现在与 2 个类别相关的特定 2 个页面中,这些类别包含最新文章和阅读次数最多的文章,其他类别使用管理面板添加,只有在撰写文章时(或从数据库)指定类别时才链接文章php 代码中的什么可能会使广告仅出现在这两个类别中。请您列出冲突 php 和 javascript 等的可能原因。或者它可能是一些需要加载的 php 或 apache 扩展主人..
//更新//广告显示在本地主机上,但未显示在远程服务器上//但请注意,只有这 2 个动态类别没有显示广告;像这样加载php:
热门文章
// Popular articles link
$popular_li_class = '';
if ($show_popular)
{
$popular_li_class = ' class="selectedcat" ';
}
if (_SEOMOD)
{
$output = '<li '. $popular_li_class .'><a href="'. _URL .'/articles/popular-01.'. _FEXT .'">'.$lang['articles_mostread'].'</a></li>'. $output;
}
else
{
$output = '<li '. $popular_li_class .'><a href="'. _URL .'/article.php?show=popular">'.$lang['articles_mostread'].'</a></li>'. $output;
}
和最新的文章类别:
// wrapper
$output = '<li><a href="'. _URL .'/article.'. _FEXT .'">'.$lang['articles_latest'].'</a></li>'. $output;
// wrapper
if ($ul_wrapper)
{
$output = "<ul id='ul_categories'>\n$output\n</ul>";
}
return $output;
}
任何帮助将不胜感激。谢谢。