Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Add `rel="nofollow"` to pagination links
- * Paste this in your active theme's functions.php file
- *
- * @param string $pagination The pagination HTML
- * @return string
- */
- add_filter('site-reviews/paginate_links', function ($pagination) {
- $pagination = str_replace('<a', '<a rel="nofollow"', $pagination);
- return $pagination;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement