Customizing "View More" Links In Views 1 For Drupal 5

A short, quick and easy tip for views theming and customization. To customize the text or the destination path/url of a 'view more' link in Views. Add this to template.php in your phptemplate theme and add cases.
<?php
/**
* Override theme_views_more() to set custom link texts and destinations.
* @param $path String
*   The destination of the more link.
*/
function _phptemplate_views_more($path) {
 
$text = 'more';
  switch (
$path) {
    case
'foo/bar':
     
$text = 'doh';
      break;
  }
  return
"<div class='more-link'>" . l(t($text), $path) . "</div>";
}
?>
Views 2 for Drupal 6 lets you do this in the UI.

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

In the UI

Views 2 for Drupal 6 lets you do this in the UI.
Really? That would be new to me. I think the only way with Views 2 is trough views-more.tpl.php