Home / Admin / Prevent AIOSEO From Outputting a rel=”next” Link
Duplicate Snippet

Embed Snippet on Your Site

Prevent AIOSEO From Outputting a rel=”next” Link

Prevent AIOSEO from outputting a rel=”next” link

<10
Code Preview
php
<?php
add_filter( 'aioseo_next_link', 'aioseo_filter_next_link' );
function aioseo_filter_next_link( $next ) {
   return '';
}

Comments

Add a Comment