get_others_drafts filter-hookWP 1.0

Usage

add_filter( 'get_others_drafts', 'wp_kama_get_others_drafts_filter' );

/**
 * Function for `get_others_drafts` filter-hook.
 * 
 * @param  $other_unpubs 
 *
 * @return 
 */
function wp_kama_get_others_drafts_filter( $other_unpubs ){

	// filter...
	return $other_unpubs;
}
$other_unpubs
-

Where the hook is called

get_others_unpublished_posts()
get_others_drafts
wp-admin/includes/deprecated.php 715
return apply_filters('get_others_drafts', $other_unpubs);

Where the hook is used in WordPress

Usage not found.