Mika MAtikainen
Apr 15, 2020 · 4 min read
How to add titles to post navigation links in WordPress?
function wps_next_posts_link_attributes($attr) {
$attr = 'title="Previous posts"';
return $attr;
}
add_filter('next_posts_link_attributes', 'wps_next_posts_link_attributes');