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