WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
2575 | if ( isset($types[$wilds[0]])) { |
2576 | $icon = $types[$wilds[0]]; |
2577 | if ( !is_numeric($mime) ) |
2578 | wp_cache_set("mime_type_icon_$mime", $icon); |
2579 | break; |
2580 | } |
2581 | } |
2582 | } |
2583 |
|
2584 | return apply_filters( 'wp_mime_type_icon', $icon, $mime, $post_id ); // Last arg is 0 if function pass mime type. |
2585 | } |
2586 |
|
2587 | /** |
2588 | * wp_check_for_changed_slugs() - {@internal Missing Short Description}} |
2589 | * |
2590 | * {@internal Missing Long Description}} |
2591 | * |
2592 | * @package WordPress |
2593 | * @subpackage Post |