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