Add rel attributes to next/previous posts links

This commit is contained in:
Pathduck 2022-10-27 20:07:14 +02:00
parent 806427b7fe
commit 3f8abe826b

View File

@ -27,6 +27,10 @@ function wp386_content_nav( $nav_id ) {
if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) )
return;
// Add rel attributes to next/previous posts links
add_filter('next_posts_link_attributes', function(){return 'rel="next"';});
add_filter('previous_posts_link_attributes', function(){return 'rel="prev"';});
$nav_class = ( is_single() ) ? 'post-navigation' : 'paging-navigation';
?>