function theme_views_more in Views (for Drupal 7) 5
Format the 'more' link for a view. Personally I prefer [More] but I've been convinced to go with simply 'more'.
1 theme call to theme_views_more()
- theme_views_view in ./
views.module - Display a view.
File
- ./
views.module, line 1575
Code
function theme_views_more($url) {
return "<div class='more-link'>" . l(t('more'), $url) . "</div>";
}