Drupal 7 Views - How to access unformatted $row variable in a custom template?
问题 I just installed Views module for Drupal 7 and am trying to find out how to customize it. So far, I have done the following things. Created a content type specified views and named it as 'videotest'. Created a custom theme as 'views-view-list--videotest.tpl.php' The page is working without a problem. Here is the custom template code I used (this is the default template from Views): <?php print $wrapper_prefix; ?> <?php if (!empty($title)) : ?> <h3><?php print $title; ?></h3> <?php endif; ?> <