就问题而言,我将如何创建仅显示比当前节点创建日期更早的内容的视图?
我使用'内容:创建日期'创建了参数,但很难将其传递给过滤条件。
说实话,我甚至不确定这是正确的做法!
答案 0 :(得分:0)
使用Views PHP字段进行管理:
<?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);
}
}
?>