Files

Views' template files

All views templates can be overridden with a variety of names, using the view, the display ID of the view, the display type of the view, or some combination thereof. More...

Files

file  views-view.tpl.php
 

Main view template.


file  views-exposed-form.tpl.php
 

This template handles the layout of the views exposed filter form.


file  views-more.tpl.php
 

Theme the more link.


file  views-view-fields.tpl.php
 

Default simple view template to all the fields as a row.


file  views-view-grid.tpl.php
 

Default simple view template to display a rows in a grid.


file  views-view-list.tpl.php
 

Default simple view template to display a list of rows.


file  views-view-row-comment.tpl.php
 

Default simple view template to display a single comment.


file  views-view-row-rss.tpl.php
 

Default view template to display a item in an RSS feed.


file  views-view-rss.tpl.php
 

Default template for feed displays that use the RSS style.


file  views-view-summary-unformatted.tpl.php
 

Default simple view template to display a group of summary lines.


file  views-view-summary.tpl.php
 

Default simple view template to display a list of summary lines.


file  views-view-table.tpl.php
 

Template to display a view as a table.


file  views-view-unformatted.tpl.php
 

Default simple view template to display a list of rows.


file  views-view.tpl.php
 

Main view template.



Detailed Description

All views templates can be overridden with a variety of names, using the view, the display ID of the view, the display type of the view, or some combination thereof.

For each view, there will be a minimum of two templates used. The first is used for all views: views-view.tpl.php.

The second template is determined by the style selected for the view. Note that certain aspects of the view can also change which style is used; for example, arguments which provide a summary view might change the style to one of the special summary styles.

The default style for all views is views-view-unformatted.tpl.php

Many styles will then farm out the actual display of each row to a row style; the default row style is views-view-fields.tpl.php.

Here is an example of all the templates that will be tried in the following case:

View, named foobar. Style: unformatted. Row style: Fields. Display: Page.

Important! When adding a new template to your theme, be sure to flush the theme registry cache!

See also:
_views_theme_functions