Add rel attributes to next/previous posts links
This commit is contained in:
parent
806427b7fe
commit
3f8abe826b
@ -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';
|
||||
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user