get_editable_authors хук-фильтрWP 1.0

Использование

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
-

Где вызывается хук

get_editable_authors()
get_editable_authors
wp-admin/includes/deprecated.php 270
return apply_filters('get_editable_authors', $authors);

Где используется хук в WordPress

Использование не найдено.