Notice: There is no legacy documentation available for this item, so you are seeing the current documentation.
Purpose
This filter can be used to filter the rel=”next” link All in One SEO outputs for paginated pages.
Arguments (1)
- $next (string) – The rel=”next” link All in One SEO outputs.
Example code snippet
The code snippet below is just an example of how this filter can be used. In the example below, All in One SEO is prevented from outputting a rel=”next” link.
add_filter( 'aioseo_next_link', 'aioseo_filter_next_link' );
function aioseo_filter_next_link( $next ) {
return '';
}