Skip to content

Instantly share code, notes, and snippets.

@Josh-Miller
Created June 1, 2015 18:14
Show Gist options
  • Save Josh-Miller/1e47b20a888f074bbc13 to your computer and use it in GitHub Desktop.
Save Josh-Miller/1e47b20a888f074bbc13 to your computer and use it in GitHub Desktop.
Overwrite pager names in Drupal
/**
* Implements hook_preprocess_pager().
*/
function THEME_preprocess_pager(&$vars, $hook) {
$vars['tags'][0] = 'first';
$vars['tags'][1] = 'previous';
$vars['tags'][3] = 'next';
$vars['tags'][4] = 'last';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment