jetpack_widget_authors_exclude
Filter authors from the Widget Authors widget.
Description
Parameters (1)
- 0. $default_excluded_authors (array)
- Array of user ID's that will be excluded
Usage
- To run the hook, copy the example below.
- $default_excluded_authors = apply_filters( 'jetpack_widget_authors_exclude', $default_excluded_authors );
- if ( !empty( $default_excluded_authors ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the jetpack_widget_authors_exclude callback
- function filter_jetpack_widget_authors_exclude( $default_excluded_authors ) {
- // make filter magic happen here...
- return $default_excluded_authors;
- };
- // add the filter
- add_filter( 'jetpack_widget_authors_exclude', 'filter_jetpack_widget_authors_exclude', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'jetpack_widget_authors_exclude', 'filter_jetpack_widget_authors_exclude', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /modules/widgets/authors.php
- $excluded_authors = apply_filters( 'jetpack_widget_authors_exclude', $default_excluded_authors );