<prefix>post_filter
The All In One SEO Pack prefix post filter hook.
Description
Parameters (2)
- 0. $array (array) =>
array()
- The array.
- 1. $args (unknown)
- The args.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( '{$prefix}post_filter', $array, $args );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the <prefix>post_filter callback
- function filter_prefixpost_filter( $array, $args ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( "{$prefix}post_filter", 'filter_prefixpost_filter', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "{$prefix}post_filter", 'filter_prefixpost_filter', 10, 2 );
Defined (2)
The filter is defined in the following location(s).
- /modules/aioseop_sitemap.php
- return apply_filters( $this->prefix . 'post_filter', array(), $args );
- $posts = apply_filters( $this->prefix . 'post_filter', $posts, $args );