In Drupal 7 I am trying to add rel=”nofollow” to ALL of the pager links in views. The closest I have got is to add the nofollow to next links, but I want it to include previous pages as well as “First” and “Last”.
P.S. We specifically want the rel=”nofollow” attribute to all pager links, we are not looking for other solutions (noindex, block with robots.txt, or rel=next/prev).
This is the code I am currently using:
function mytheme_pager_next($variables) { $text = $variables['text']; $element = $variables['element']; $interval = $variables['interval']; $parameters = $variables['parameters']; global $pager_page_array, $pager_total; $output = ''; // If we are anywhere but the last page if ($pager_page_array[$element] < ($pager_total[$element] - 1)) { $page_new = pager_load_array($pager_page_array[$element] + $interval, $element, $pager_page_array); // If the next page is the last page, mark the link as such. if ($page_new[$element] == ($pager_total[$element] - 1)) { $output = theme('pager_last', array('text' => $text, 'element' => $element, 'parameters' => $parameters,'attributes'=>array('rel'=>'nofollow'))); } // The next page is not the last page. else { $output = theme('pager_link', array('text' => $text, 'page_new' => $page_new, 'element' => $element, 'parameters' => $parameters,'attributes'=>array('rel'=>'nofollow'))); } } return $output; }
Sponsored by SupremePR