几乎按照问题,我将如何创建一个只显示比当前节点的创建日期更早的内容的视图?
我已经使用“内容:创建日期”创建了参数,但努力将其传递给过滤条件。
老实说,我什至不确定这是正确的方法!
几乎按照问题,我将如何创建一个只显示比当前节点的创建日期更早的内容的视图?
我已经使用“内容:创建日期”创建了参数,但努力将其传递给过滤条件。
老实说,我什至不确定这是正确的方法!
Managed to get this working with a Views PHP field:
<?php
global $base_path;
if (arg(0) == 'node' && is_numeric(arg(1)) && ! arg(2)) {
$node = node_load(arg(1));
$a1 = format_date($node->created, 'custom', 'm/d/Y');
$a2 = date("m/d/Y",strtotime("-2 months",strtotime($a1)));
$a3 = format_date($row->created, 'custom', 'm/d/Y');
$b1 = new DateTime($a1);
$b2 = new DateTime($a2);
$b3 = new DateTime($a3);
if ($b3 >= $b2 && $b3 <= $b1) {
print '<h2><a href="'. $base_path . 'node/' . $row->nid . '">' . $row->title . '</a></h2>' . $data->field_body[0]['rendered']['#markup'];
//dsm($data);
}
}
?>