Revision: 13304
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 18, 2009 09:36 by level09
Initial Code
<?php
$view = views_get_view('reviews_front');
$view->render();
$images = array();
$teasers = array()
foreach ($view->result as $result) {
$node = node_load($result->nid);
$images[] = $node->field_image[0]['view'];
$teasers[] = node_teaser($node->body);
}
echo '<div>';
foreach ($images as $img) {
echo $img;
}
echo '</div>';
//same way for teasers ...
?>
Initial URL
Initial Description
Initial Title
Custom Views Output
Initial Tags
drupal
Initial Language
PHP