views-more.tpl.php

Same filename in other branches
  1. 7.x-3.x theme/views-more.tpl.php

views-more.tpl.php Theme the more link

  • $more_url: the url for the more link

File

theme/views-more.tpl.php

View source
<?php


/**
 * @file views-more.tpl.php
 * Theme the more link
 *
 * - $more_url: the url for the more link
 *
 * @ingroup views_templates
 */
?>

<div class="more-link">
  <a href="<?php

print $more_url;
?>">
    <?php

print $link_text;
?>
  </a>
</div>

Related topics