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 |
---|---|
288 | * @since Twenty Fourteen 1.0 |
289 | * |
290 | * @param array $dimensions { |
291 | * An array of height and width dimensions. |
292 | * |
293 | * @type int $height Height of the image in pixels. Default 810. |
294 | * @type int $width Width of the image in pixels. Default 810. |
295 | * } |
296 | */ |
297 | $attachment_size = apply_filters( 'twentyfourteen_attachment_size', array( 810, 810 ) ); |
298 | $next_attachment_url = wp_get_attachment_url(); |
299 |
|
300 | /* |
301 | * Grab the IDs of all the image attachments in a gallery so we can get the URL |
302 | * of the next adjacent image in a gallery, or the first image (if we're |
303 | * looking at the last image in a gallery), or, in a gallery of one, just the |
304 | * link to that image file. |
305 | */ |
306 | $attachment_ids = get_posts( array( |