php-nuke日期显示在新闻的主要页脚上

时间:2013-01-20 03:16:06

标签: php footer

我无法弄清楚如何在新闻的主要页脚上添加“发布日期”。每当我想检查帖子的日期时,我都要点击“更多”图标。我需要在主页脚上显示它。

猜猜我找到了相关代码的位置。它们在theme.php中:

主要页脚:

  <div class="NewsFooter">
    <div class="foot-r">
    <?=$MoreLinkRight?>
    </div>
    <div class="foot-l">
    <?=$MoreLinkLeft?>
    </div>
    <div class="foot-m">

      <div class="Author">
        <?=_AUTHOR?>
        :
        <?=$aid?>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <?=_VISIT?>
        :
        <?=$counter?>
      </div>

子页脚(这是一个有条件的):

<?php
}


function themearticle($aid, $informant, $datetime, $title, $bodytext, $hometext, $topics, $topicname_link, $topicimage_link, $topictext_link, $printpage, $notes, $counter, $score, $ratings, $sid, $topic_link)
{
    global $admin, $tipath;
    $ThemeSel = get_theme();
    theme_lang();
    if(file_exists("themes/$ThemeSel/images/topics/$topicimage_link")){
    $t_image = "themes/$ThemeSel/images/topics/$topicimage_link";
    }else{
    $t_image = "$tipath$topicimage_link";
    }
    $posted = ""._POSTEDON." $datetime "._BY." "; 
    $posted .= get_author($aid);
    $notes = str_replace(" ","_",$notes);
    $notes = explode(":",$notes);
    foreach($notes as $tag){
        $tags .= "<i><a href=\"modules.php?name=News&file=tags&tags=$tag\">".str_replace("_"," ",$tag)."</a></i> ";
    }
?>

1 个答案:

答案 0 :(得分:0)

哇......我做到了......

我刚刚添加了

> <?=$datetime?>

下的

> <?=_AUTHOR?>

和baAm。 我不知道这个想法来自哪里,但它正在发挥作用,这一切都很重要。 不管怎样,谢谢......