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 |
---|---|
54 | function get_image_send_to_editor($id, $alt, $title, $align, $url='', $rel = false, $size='medium') { |
55 |
|
56 | $html = get_image_tag($id, $alt, $title, $align, $size); |
57 |
|
58 | $rel = $rel ? ' rel="attachment wp-att-'.attribute_escape($id).'"' : ''; |
59 |
|
60 | if ( $url ) |
61 | $html = '<a href="' . clean_url($url) . "\"$rel>$html</a>"; |
62 |
|
63 | $html = apply_filters( 'image_send_to_editor', $html, $id, $alt, $title, $align, $url, $size ); |
64 |
|
65 | return $html; |
66 | } |
67 |
|
68 | function image_add_caption( $html, $id, $alt, $title, $align, $url, $size ) { |
69 |
|
70 | // CAPTIONS_OFF is temporary. Do not use it. |
71 | if ( empty($alt) || ( defined('CAPTIONS_OFF') && true == CAPTIONS_OFF ) ) return $html; |
72 | $id = ( 0 < (int) $id ) ? 'attachment_' . $id : ''; |