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

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

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
-

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

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

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

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