我用的是JOE主题,在widget.php里修改代码如下:
<?php
class Widget_Contents_Hot extends Widget_Abstract_Contents
{
public function execute()
{
$this->parameter->setDefault(array('pageSize' => 10));
$select = $this->select();
$select->cleanAttribute('fields');
// $period = time() - 2592000; // 单位: 秒, 时间范围: 30天
$period = strtotime("-180 days");
$this->db->fetchAll(
$select->from('table.contents')
->where("table.contents.password IS NULL OR table.contents.password = ''")
->where('table.contents.status = ?', 'publish')
->where('table.contents.created > ?','$period')
->where('table.contents.type = ?', 'post')
->limit($this->parameter->pageSize)
->order('table.contents.views', Typecho_Db::SORT_DESC),
array($this, 'push')
);
}
}
怎么修改都没效果,有大佬指导一下吗?