aioseop_prev_link
The All In One SEO Pack aioseop prev link hook.
Description
Parameters (1)
- 0. $prev_next_prev (unknown)
- The prev next prev.
Usage
- To run the hook, copy the example below.
- $prev_next_prev = apply_filters( 'aioseop_prev_link', $prev_next_prev );
- if ( !empty( $prev_next_prev ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the aioseop_prev_link callback
- function filter_aioseop_prev_link( $prev_next_prev ) {
- // make filter magic happen here...
- return $prev_next_prev;
- };
- // add the filter
- add_filter( 'aioseop_prev_link', 'filter_aioseop_prev_link', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'aioseop_prev_link', 'filter_aioseop_prev_link', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /aioseop_class.php
- $prev = apply_filters( 'aioseop_prev_link', $prev_next['prev'] );