aioseo_prev_link

Purpose

This filter can be used to filter the rel=”prev” link All in One SEO outputs for paginated pages.

Arguments (1)

  1. $previous (string) – The rel=”prev” 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=”prev” link.

add_filter( 'aioseo_prev_link', 'aioseo_filter_prev_link' );

function aioseo_filter_prev_link( $previous ) {
   return '';
}