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 |
---|---|
130 | * @param string $html The image HTML markup to send. |
131 | * @param int $id The attachment id. |
132 | * @param string $caption The image caption. |
133 | * @param string $title The image title. |
134 | * @param string $align The image alignment. |
135 | * @param string $url The image source URL. |
136 | * @param string $size The image size. |
137 | * @param string $alt The image alternative, or alt, text. |
138 | */ |
139 | $html = apply_filters( 'image_send_to_editor', $html, $id, $caption, $title, $align, $url, $size, $alt ); |
140 |
|
141 | return $html; |
142 | } |
143 |
|
144 | /** |
145 | * Adds image shortcode with caption to editor |
146 | * |
147 | * @since 2.6.0 |
148 | * |