欢迎访问服务器技术网-www.fuwuqijishu.com

设置Emlog程序最新文章时间加红字体方法 突出新旧文章

网站建设 fuwuqijishu 2年前 (2022-09-04) 24次浏览 0个评论 扫描二维码

Emlog 程序搭建博客还是比较常见的,这不有网友今天提到需要帮他的博客设置最新文章时间字体加上红色们这样可以区分新旧文章。这个我们在WP程序中还是比较常见的,那这样的效果如何设置呢?

这里我们找到当前主题的module.php文件。

<?php//今日是否更新function getimeLogNum(){ $Log_Model = new Log_Model(); //构造时间戳 $today = strtotime(date('Y-m-d')); //查询今日 $today_sql = "and date>$today and checked='y' and top='n'"; $today_num = $Log_Model->getLogNum('n', $today_sql); return $today_num;}?>

在时间未知设置添加这样的代码。

加上代码肯定是不行的,同时,我们还需要设置CSS样式。

.new{color:#ff0000}

我们需要在CSS样式表中新增NEW样式。这样我们可以将新发布的文章当天时间作为红色。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2213.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900