apply_filters( 'twentyfourteen_attachment_size', array $dimensions )
- Since
- Twenty Fourteen 1.0
Filters the default Twenty Fourteen attachment size.
Compatibility
- WordPress
- since Twenty Fourteen 1.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$dimensionsarray- { An array of height and width dimensions.
@type int $height Height of the image in pixels. Default 810.
@type int $width Width of the image in pixels. Default 810.
}$heightintHeight of the image in pixels. Default 810.$widthintWidth of the image in pixels. Default 810.
Where this hook fires · 1
wp-content/themes/twentyfourteen/functions.php:481twentyfourteen_the_attached_image()
Source code
* An array of height and width dimensions. * * @type int $height Height of the image in pixels. Default 810. * @type int $width Width of the image in pixels. Default 810. * } */ $attachment_size = apply_filters( 'twentyfourteen_attachment_size', array( 810, 810 ) ); $next_attachment_url = wp_get_attachment_url(); /* * Grab the IDs of all the image attachments in a gallery so we can get the URL * of the next adjacent image in a gallery, or the first image (if we're * looking at the last image in a gallery), or, in a gallery of one, just theChangelog
Introduced in Twenty Fourteen 1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.