theme_more_link($url, $title)
drupal/includes/theme.inc, line 1616
Returns code that emits the 'more' link used on blocks.
$url The url of the main page
$title A descriptive verb for the link, like 'Read more'
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
function theme_more_link($url, $title) {
return '<div class="more-link">' . t('<a href="@link" title="@title">more</a>', array('@link' => check_url($url), '@title' => $title)) . '</div>';
}