get_editable_authors
Usage
add_filter( 'get_editable_authors', 'wp_kama_get_editable_authors_filter' ); /** * Function for `get_editable_authors` filter-hook. * * @param $authors * * @return */ function wp_kama_get_editable_authors_filter( $authors ){ // filter... return $authors; }
- $authors
- -
Where the hook is called
get_editable_authors
wp-admin/includes/deprecated.php 270
return apply_filters('get_editable_authors', $authors);