author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* WordPress API for media display. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Media |
|
7 |
*/ |
|
8 |
||
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
9 |
// Don't load directly. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
10 |
if ( ! defined( 'ABSPATH' ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
11 |
die( '-1' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
12 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
13 |
|
0 | 14 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
15 |
* Retrieves additional image sizes. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
16 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
* @since 4.7.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
* @global array $_wp_additional_image_sizes |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
20 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
* @return array Additional images size data. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
function wp_get_additional_image_sizes() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
24 |
global $_wp_additional_image_sizes; |
16 | 25 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
26 |
if ( ! $_wp_additional_image_sizes ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
$_wp_additional_image_sizes = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
} |
16 | 29 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
30 |
return $_wp_additional_image_sizes; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
31 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
33 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
34 |
* Scales down the default size of an image. |
0 | 35 |
* |
36 |
* This is so that the image is a better fit for the editor and theme. |
|
37 |
* |
|
5 | 38 |
* The `$size` parameter accepts either an array or a string. The supported string |
0 | 39 |
* values are 'thumb' or 'thumbnail' for the given thumbnail size or defaults at |
40 |
* 128 width and 96 height in pixels. Also supported for the string value is |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
* 'medium', 'medium_large' and 'full'. The 'full' isn't actually supported, but any value other |
0 | 42 |
* than the supported will result in the content_width size or 500 if that is |
43 |
* not set. |
|
44 |
* |
|
5 | 45 |
* Finally, there is a filter named {@see 'editor_max_image_size'}, that will be |
16 | 46 |
* called on the calculated array for width and height, respectively. |
0 | 47 |
* |
48 |
* @since 2.5.0 |
|
49 |
* |
|
18 | 50 |
* @global int $content_width |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
* |
5 | 52 |
* @param int $width Width of the image in pixels. |
53 |
* @param int $height Height of the image in pixels. |
|
18 | 54 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
55 |
* of width and height values in pixels (in that order). Default 'medium'. |
|
5 | 56 |
* @param string $context Optional. Could be 'display' (like in a theme) or 'edit' |
57 |
* (like inserting into an editor). Default null. |
|
16 | 58 |
* @return int[] { |
59 |
* An array of width and height values. |
|
60 |
* |
|
61 |
* @type int $0 The maximum width in pixels. |
|
62 |
* @type int $1 The maximum height in pixels. |
|
63 |
* } |
|
0 | 64 |
*/ |
5 | 65 |
function image_constrain_size_for_editor( $width, $height, $size = 'medium', $context = null ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
global $content_width; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
68 |
$_wp_additional_image_sizes = wp_get_additional_image_sizes(); |
0 | 69 |
|
9 | 70 |
if ( ! $context ) { |
0 | 71 |
$context = is_admin() ? 'edit' : 'display'; |
72 |
} |
|
9 | 73 |
|
74 |
if ( is_array( $size ) ) { |
|
75 |
$max_width = $size[0]; |
|
76 |
$max_height = $size[1]; |
|
16 | 77 |
} elseif ( 'thumb' === $size || 'thumbnail' === $size ) { |
18 | 78 |
$max_width = (int) get_option( 'thumbnail_size_w' ); |
79 |
$max_height = (int) get_option( 'thumbnail_size_h' ); |
|
16 | 80 |
// Last chance thumbnail size defaults. |
9 | 81 |
if ( ! $max_width && ! $max_height ) { |
82 |
$max_width = 128; |
|
0 | 83 |
$max_height = 96; |
84 |
} |
|
16 | 85 |
} elseif ( 'medium' === $size ) { |
18 | 86 |
$max_width = (int) get_option( 'medium_size_w' ); |
87 |
$max_height = (int) get_option( 'medium_size_h' ); |
|
9 | 88 |
|
16 | 89 |
} elseif ( 'medium_large' === $size ) { |
18 | 90 |
$max_width = (int) get_option( 'medium_large_size_w' ); |
91 |
$max_height = (int) get_option( 'medium_large_size_h' ); |
|
92 |
||
93 |
if ( (int) $content_width > 0 ) { |
|
94 |
$max_width = min( (int) $content_width, $max_width ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
95 |
} |
16 | 96 |
} elseif ( 'large' === $size ) { |
5 | 97 |
/* |
98 |
* We're inserting a large size image into the editor. If it's a really |
|
99 |
* big image we'll scale it down to fit reasonably within the editor |
|
100 |
* itself, and within the theme's content width if it's known. The user |
|
101 |
* can resize it in the editor if they wish. |
|
102 |
*/ |
|
18 | 103 |
$max_width = (int) get_option( 'large_size_w' ); |
104 |
$max_height = (int) get_option( 'large_size_h' ); |
|
105 |
||
106 |
if ( (int) $content_width > 0 ) { |
|
107 |
$max_width = min( (int) $content_width, $max_width ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
108 |
} |
16 | 109 |
} elseif ( ! empty( $_wp_additional_image_sizes ) && in_array( $size, array_keys( $_wp_additional_image_sizes ), true ) ) { |
18 | 110 |
$max_width = (int) $_wp_additional_image_sizes[ $size ]['width']; |
111 |
$max_height = (int) $_wp_additional_image_sizes[ $size ]['height']; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
// Only in admin. Assume that theme authors know what they're doing. |
18 | 113 |
if ( (int) $content_width > 0 && 'edit' === $context ) { |
114 |
$max_width = min( (int) $content_width, $max_width ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
} |
16 | 116 |
} else { // $size === 'full' has no constraint. |
9 | 117 |
$max_width = $width; |
0 | 118 |
$max_height = $height; |
119 |
} |
|
120 |
||
5 | 121 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
122 |
* Filters the maximum image size dimensions for the editor. |
5 | 123 |
* |
124 |
* @since 2.5.0 |
|
125 |
* |
|
16 | 126 |
* @param int[] $max_image_size { |
127 |
* An array of width and height values. |
|
128 |
* |
|
129 |
* @type int $0 The maximum width in pixels. |
|
130 |
* @type int $1 The maximum height in pixels. |
|
131 |
* } |
|
18 | 132 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
133 |
* an array of width and height values in pixels (in that order). |
|
134 |
* @param string $context The context the image is being resized for. |
|
135 |
* Possible values are 'display' (like in a theme) |
|
136 |
* or 'edit' (like inserting into an editor). |
|
5 | 137 |
*/ |
0 | 138 |
list( $max_width, $max_height ) = apply_filters( 'editor_max_image_size', array( $max_width, $max_height ), $size, $context ); |
139 |
||
140 |
return wp_constrain_dimensions( $width, $height, $max_width, $max_height ); |
|
141 |
} |
|
142 |
||
143 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
144 |
* Retrieves width and height attributes using given width and height values. |
0 | 145 |
* |
146 |
* Both attributes are required in the sense that both parameters must have a |
|
147 |
* value, but are optional in that if you set them to false or null, then they |
|
148 |
* will not be added to the returned string. |
|
149 |
* |
|
150 |
* You can set the value using a string, but it will only take numeric values. |
|
151 |
* If you wish to put 'px' after the numbers, then it will be stripped out of |
|
152 |
* the return. |
|
153 |
* |
|
154 |
* @since 2.5.0 |
|
155 |
* |
|
5 | 156 |
* @param int|string $width Image width in pixels. |
157 |
* @param int|string $height Image height in pixels. |
|
0 | 158 |
* @return string HTML attributes for width and, or height. |
159 |
*/ |
|
5 | 160 |
function image_hwstring( $width, $height ) { |
0 | 161 |
$out = ''; |
9 | 162 |
if ( $width ) { |
18 | 163 |
$out .= 'width="' . (int) $width . '" '; |
9 | 164 |
} |
165 |
if ( $height ) { |
|
18 | 166 |
$out .= 'height="' . (int) $height . '" '; |
9 | 167 |
} |
0 | 168 |
return $out; |
169 |
} |
|
170 |
||
171 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
172 |
* Scales an image to fit a particular size (such as 'thumb' or 'medium'). |
0 | 173 |
* |
174 |
* The URL might be the original image, or it might be a resized version. This |
|
175 |
* function won't create a new resized copy, it will just return an already |
|
176 |
* resized one if it exists. |
|
177 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
178 |
* A plugin may use the {@see 'image_downsize'} filter to hook into and offer image |
0 | 179 |
* resizing services for images. The hook must return an array with the same |
16 | 180 |
* elements that are normally returned from the function. |
0 | 181 |
* |
182 |
* @since 2.5.0 |
|
183 |
* |
|
5 | 184 |
* @param int $id Attachment ID for image. |
18 | 185 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
186 |
* of width and height values in pixels (in that order). Default 'medium'. |
|
16 | 187 |
* @return array|false { |
188 |
* Array of image data, or boolean false if no image is available. |
|
189 |
* |
|
190 |
* @type string $0 Image source URL. |
|
191 |
* @type int $1 Image width in pixels. |
|
192 |
* @type int $2 Image height in pixels. |
|
193 |
* @type bool $3 Whether the image is a resized image. |
|
194 |
* } |
|
0 | 195 |
*/ |
5 | 196 |
function image_downsize( $id, $size = 'medium' ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
197 |
$is_image = wp_attachment_is_image( $id ); |
0 | 198 |
|
5 | 199 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
200 |
* Filters whether to preempt the output of image_downsize(). |
5 | 201 |
* |
16 | 202 |
* Returning a truthy value from the filter will effectively short-circuit |
203 |
* down-sizing the image, returning that value instead. |
|
5 | 204 |
* |
205 |
* @since 2.5.0 |
|
206 |
* |
|
16 | 207 |
* @param bool|array $downsize Whether to short-circuit the image downsize. |
5 | 208 |
* @param int $id Attachment ID for image. |
18 | 209 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
210 |
* an array of width and height values in pixels (in that order). |
|
5 | 211 |
*/ |
16 | 212 |
$out = apply_filters( 'image_downsize', false, $id, $size ); |
213 |
||
214 |
if ( $out ) { |
|
0 | 215 |
return $out; |
5 | 216 |
} |
0 | 217 |
|
9 | 218 |
$img_url = wp_get_attachment_url( $id ); |
219 |
$meta = wp_get_attachment_metadata( $id ); |
|
16 | 220 |
$width = 0; |
221 |
$height = 0; |
|
9 | 222 |
$is_intermediate = false; |
223 |
$img_url_basename = wp_basename( $img_url ); |
|
0 | 224 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
225 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
226 |
* If the file isn't an image, attempt to replace its URL with a rendered image from its meta. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
227 |
* Otherwise, a non-image type could be returned. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
228 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
229 |
if ( ! $is_image ) { |
16 | 230 |
if ( ! empty( $meta['sizes']['full'] ) ) { |
9 | 231 |
$img_url = str_replace( $img_url_basename, $meta['sizes']['full']['file'], $img_url ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
$img_url_basename = $meta['sizes']['full']['file']; |
9 | 233 |
$width = $meta['sizes']['full']['width']; |
234 |
$height = $meta['sizes']['full']['height']; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
235 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
236 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
237 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
238 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
|
16 | 240 |
// Try for a new style intermediate size. |
241 |
$intermediate = image_get_intermediate_size( $id, $size ); |
|
242 |
||
243 |
if ( $intermediate ) { |
|
9 | 244 |
$img_url = str_replace( $img_url_basename, $intermediate['file'], $img_url ); |
245 |
$width = $intermediate['width']; |
|
246 |
$height = $intermediate['height']; |
|
0 | 247 |
$is_intermediate = true; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
248 |
} elseif ( 'thumbnail' === $size && ! empty( $meta['thumb'] ) && is_string( $meta['thumb'] ) ) { |
16 | 249 |
// Fall back to the old thumbnail. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
250 |
$imagefile = get_attached_file( $id ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
251 |
$thumbfile = str_replace( wp_basename( $imagefile ), wp_basename( $meta['thumb'] ), $imagefile ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
252 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
253 |
if ( file_exists( $thumbfile ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
254 |
$info = wp_getimagesize( $thumbfile ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
255 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
256 |
if ( $info ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
257 |
$img_url = str_replace( $img_url_basename, wp_basename( $thumbfile ), $img_url ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
258 |
$width = $info[0]; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
259 |
$height = $info[1]; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
260 |
$is_intermediate = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
261 |
} |
0 | 262 |
} |
263 |
} |
|
16 | 264 |
|
9 | 265 |
if ( ! $width && ! $height && isset( $meta['width'], $meta['height'] ) ) { |
16 | 266 |
// Any other type: use the real image. |
9 | 267 |
$width = $meta['width']; |
0 | 268 |
$height = $meta['height']; |
269 |
} |
|
270 |
||
9 | 271 |
if ( $img_url ) { |
16 | 272 |
// We have the actual image size, but might need to further constrain it if content_width is narrower. |
0 | 273 |
list( $width, $height ) = image_constrain_size_for_editor( $width, $height, $size ); |
274 |
||
275 |
return array( $img_url, $width, $height, $is_intermediate ); |
|
276 |
} |
|
16 | 277 |
|
0 | 278 |
return false; |
279 |
} |
|
280 |
||
281 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
282 |
* Registers a new image size. |
5 | 283 |
* |
0 | 284 |
* @since 2.9.0 |
5 | 285 |
* |
286 |
* @global array $_wp_additional_image_sizes Associative array of additional image sizes. |
|
287 |
* |
|
288 |
* @param string $name Image size identifier. |
|
9 | 289 |
* @param int $width Optional. Image width in pixels. Default 0. |
290 |
* @param int $height Optional. Image height in pixels. Default 0. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
291 |
* @param bool|array $crop { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
292 |
* Optional. Image cropping behavior. If false, the image will be scaled (default). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
293 |
* If true, image will be cropped to the specified dimensions using center positions. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
294 |
* If an array, the image will be cropped using the array to specify the crop location: |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
295 |
* |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
296 |
* @type string $0 The x crop position. Accepts 'left', 'center', or 'right'. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
297 |
* @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
298 |
* } |
0 | 299 |
*/ |
300 |
function add_image_size( $name, $width = 0, $height = 0, $crop = false ) { |
|
301 |
global $_wp_additional_image_sizes; |
|
5 | 302 |
|
303 |
$_wp_additional_image_sizes[ $name ] = array( |
|
304 |
'width' => absint( $width ), |
|
305 |
'height' => absint( $height ), |
|
306 |
'crop' => $crop, |
|
307 |
); |
|
308 |
} |
|
309 |
||
310 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
311 |
* Checks if an image size exists. |
5 | 312 |
* |
313 |
* @since 3.9.0 |
|
314 |
* |
|
315 |
* @param string $name The image size to check. |
|
316 |
* @return bool True if the image size exists, false if not. |
|
317 |
*/ |
|
318 |
function has_image_size( $name ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
$sizes = wp_get_additional_image_sizes(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
return isset( $sizes[ $name ] ); |
0 | 321 |
} |
322 |
||
323 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
324 |
* Removes a new image size. |
5 | 325 |
* |
326 |
* @since 3.9.0 |
|
327 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
328 |
* @global array $_wp_additional_image_sizes |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
329 |
* |
5 | 330 |
* @param string $name The image size to remove. |
331 |
* @return bool True if the image size was successfully removed, false on failure. |
|
332 |
*/ |
|
333 |
function remove_image_size( $name ) { |
|
334 |
global $_wp_additional_image_sizes; |
|
335 |
||
336 |
if ( isset( $_wp_additional_image_sizes[ $name ] ) ) { |
|
337 |
unset( $_wp_additional_image_sizes[ $name ] ); |
|
338 |
return true; |
|
339 |
} |
|
340 |
||
341 |
return false; |
|
342 |
} |
|
343 |
||
344 |
/** |
|
345 |
* Registers an image size for the post thumbnail. |
|
0 | 346 |
* |
347 |
* @since 2.9.0 |
|
5 | 348 |
* |
349 |
* @see add_image_size() for details on cropping behavior. |
|
350 |
* |
|
351 |
* @param int $width Image width in pixels. |
|
352 |
* @param int $height Image height in pixels. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
353 |
* @param bool|array $crop { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
354 |
* Optional. Image cropping behavior. If false, the image will be scaled (default). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
355 |
* If true, image will be cropped to the specified dimensions using center positions. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
356 |
* If an array, the image will be cropped using the array to specify the crop location: |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
357 |
* |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
358 |
* @type string $0 The x crop position. Accepts 'left', 'center', or 'right'. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
359 |
* @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
360 |
* } |
0 | 361 |
*/ |
362 |
function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) { |
|
363 |
add_image_size( 'post-thumbnail', $width, $height, $crop ); |
|
364 |
} |
|
365 |
||
366 |
/** |
|
5 | 367 |
* Gets an img tag for an image attachment, scaling it down if requested. |
0 | 368 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
369 |
* The {@see 'get_image_tag_class'} filter allows for changing the class name for the |
0 | 370 |
* image without having to use regular expressions on the HTML content. The |
371 |
* parameters are: what WordPress will use for the class, the Attachment ID, |
|
372 |
* image align value, and the size the image should be. |
|
373 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
374 |
* The second filter, {@see 'get_image_tag'}, has the HTML content, which can then be |
0 | 375 |
* further manipulated by a plugin to change all attribute values and even HTML |
376 |
* content. |
|
377 |
* |
|
378 |
* @since 2.5.0 |
|
379 |
* |
|
5 | 380 |
* @param int $id Attachment ID. |
16 | 381 |
* @param string $alt Image description for the alt attribute. |
382 |
* @param string $title Image description for the title attribute. |
|
5 | 383 |
* @param string $align Part of the class name for aligning the image. |
18 | 384 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of |
385 |
* width and height values in pixels (in that order). Default 'medium'. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
386 |
* @return string HTML IMG element for given image attachment. |
0 | 387 |
*/ |
5 | 388 |
function get_image_tag( $id, $alt, $title, $align, $size = 'medium' ) { |
0 | 389 |
|
9 | 390 |
list( $img_src, $width, $height ) = image_downsize( $id, $size ); |
391 |
$hwstring = image_hwstring( $width, $height ); |
|
0 | 392 |
|
393 |
$title = $title ? 'title="' . esc_attr( $title ) . '" ' : ''; |
|
394 |
||
18 | 395 |
$size_class = is_array( $size ) ? implode( 'x', $size ) : $size; |
396 |
$class = 'align' . esc_attr( $align ) . ' size-' . esc_attr( $size_class ) . ' wp-image-' . $id; |
|
5 | 397 |
|
398 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
399 |
* Filters the value of the attachment's image tag class attribute. |
5 | 400 |
* |
401 |
* @since 2.6.0 |
|
402 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
403 |
* @param string $class CSS class name or space-separated list of classes. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
404 |
* @param int $id Attachment ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
405 |
* @param string $align Part of the class name for aligning the image. |
18 | 406 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
407 |
* an array of width and height values in pixels (in that order). |
|
5 | 408 |
*/ |
409 |
$class = apply_filters( 'get_image_tag_class', $class, $id, $align, $size ); |
|
0 | 410 |
|
19 | 411 |
$html = '<img src="' . esc_url( $img_src ) . '" alt="' . esc_attr( $alt ) . '" ' . $title . $hwstring . 'class="' . $class . '" />'; |
0 | 412 |
|
5 | 413 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
414 |
* Filters the HTML content for the image tag. |
5 | 415 |
* |
416 |
* @since 2.6.0 |
|
417 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
418 |
* @param string $html HTML content for the image. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
419 |
* @param int $id Attachment ID. |
16 | 420 |
* @param string $alt Image description for the alt attribute. |
421 |
* @param string $title Image description for the title attribute. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
422 |
* @param string $align Part of the class name for aligning the image. |
18 | 423 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
424 |
* an array of width and height values in pixels (in that order). |
|
5 | 425 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
426 |
return apply_filters( 'get_image_tag', $html, $id, $alt, $title, $align, $size ); |
0 | 427 |
} |
428 |
||
429 |
/** |
|
5 | 430 |
* Calculates the new dimensions for a down-sampled image. |
0 | 431 |
* |
432 |
* If either width or height are empty, no constraint is applied on |
|
433 |
* that dimension. |
|
434 |
* |
|
435 |
* @since 2.5.0 |
|
436 |
* |
|
5 | 437 |
* @param int $current_width Current width of the image. |
0 | 438 |
* @param int $current_height Current height of the image. |
5 | 439 |
* @param int $max_width Optional. Max width in pixels to constrain to. Default 0. |
440 |
* @param int $max_height Optional. Max height in pixels to constrain to. Default 0. |
|
16 | 441 |
* @return int[] { |
442 |
* An array of width and height values. |
|
443 |
* |
|
444 |
* @type int $0 The width in pixels. |
|
445 |
* @type int $1 The height in pixels. |
|
446 |
* } |
|
0 | 447 |
*/ |
5 | 448 |
function wp_constrain_dimensions( $current_width, $current_height, $max_width = 0, $max_height = 0 ) { |
9 | 449 |
if ( ! $max_width && ! $max_height ) { |
0 | 450 |
return array( $current_width, $current_height ); |
9 | 451 |
} |
0 | 452 |
|
16 | 453 |
$width_ratio = 1.0; |
454 |
$height_ratio = 1.0; |
|
455 |
$did_width = false; |
|
456 |
$did_height = false; |
|
0 | 457 |
|
458 |
if ( $max_width > 0 && $current_width > 0 && $current_width > $max_width ) { |
|
459 |
$width_ratio = $max_width / $current_width; |
|
9 | 460 |
$did_width = true; |
0 | 461 |
} |
462 |
||
463 |
if ( $max_height > 0 && $current_height > 0 && $current_height > $max_height ) { |
|
464 |
$height_ratio = $max_height / $current_height; |
|
9 | 465 |
$did_height = true; |
0 | 466 |
} |
467 |
||
16 | 468 |
// Calculate the larger/smaller ratios. |
0 | 469 |
$smaller_ratio = min( $width_ratio, $height_ratio ); |
470 |
$larger_ratio = max( $width_ratio, $height_ratio ); |
|
471 |
||
5 | 472 |
if ( (int) round( $current_width * $larger_ratio ) > $max_width || (int) round( $current_height * $larger_ratio ) > $max_height ) { |
9 | 473 |
// The larger ratio is too big. It would result in an overflow. |
0 | 474 |
$ratio = $smaller_ratio; |
5 | 475 |
} else { |
0 | 476 |
// The larger ratio fits, and is likely to be a more "snug" fit. |
477 |
$ratio = $larger_ratio; |
|
5 | 478 |
} |
0 | 479 |
|
480 |
// Very small dimensions may result in 0, 1 should be the minimum. |
|
9 | 481 |
$w = max( 1, (int) round( $current_width * $ratio ) ); |
482 |
$h = max( 1, (int) round( $current_height * $ratio ) ); |
|
0 | 483 |
|
16 | 484 |
/* |
485 |
* Sometimes, due to rounding, we'll end up with a result like this: |
|
486 |
* 465x700 in a 177x177 box is 117x176... a pixel short. |
|
487 |
* We also have issues with recursive calls resulting in an ever-changing result. |
|
488 |
* Constraining to the result of a constraint should yield the original result. |
|
489 |
* Thus we look for dimensions that are one pixel shy of the max value and bump them up. |
|
490 |
*/ |
|
5 | 491 |
|
492 |
// Note: $did_width means it is possible $smaller_ratio == $width_ratio. |
|
16 | 493 |
if ( $did_width && $w === $max_width - 1 ) { |
494 |
$w = $max_width; // Round it up. |
|
5 | 495 |
} |
496 |
||
497 |
// Note: $did_height means it is possible $smaller_ratio == $height_ratio. |
|
16 | 498 |
if ( $did_height && $h === $max_height - 1 ) { |
499 |
$h = $max_height; // Round it up. |
|
5 | 500 |
} |
501 |
||
502 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
503 |
* Filters dimensions to constrain down-sampled images to. |
5 | 504 |
* |
505 |
* @since 4.1.0 |
|
506 |
* |
|
16 | 507 |
* @param int[] $dimensions { |
508 |
* An array of width and height values. |
|
509 |
* |
|
510 |
* @type int $0 The width in pixels. |
|
511 |
* @type int $1 The height in pixels. |
|
512 |
* } |
|
9 | 513 |
* @param int $current_width The current width of the image. |
514 |
* @param int $current_height The current height of the image. |
|
515 |
* @param int $max_width The maximum width permitted. |
|
516 |
* @param int $max_height The maximum height permitted. |
|
5 | 517 |
*/ |
518 |
return apply_filters( 'wp_constrain_dimensions', array( $w, $h ), $current_width, $current_height, $max_width, $max_height ); |
|
0 | 519 |
} |
520 |
||
521 |
/** |
|
5 | 522 |
* Retrieves calculated resize dimensions for use in WP_Image_Editor. |
523 |
* |
|
524 |
* Calculates dimensions and coordinates for a resized image that fits |
|
525 |
* within a specified width and height. |
|
0 | 526 |
* |
527 |
* @since 2.5.0 |
|
528 |
* |
|
5 | 529 |
* @param int $orig_w Original width in pixels. |
530 |
* @param int $orig_h Original height in pixels. |
|
531 |
* @param int $dest_w New width in pixels. |
|
532 |
* @param int $dest_h New height in pixels. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
533 |
* @param bool|array $crop { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
534 |
* Optional. Image cropping behavior. If false, the image will be scaled (default). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
535 |
* If true, image will be cropped to the specified dimensions using center positions. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
536 |
* If an array, the image will be cropped using the array to specify the crop location: |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
537 |
* |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
538 |
* @type string $0 The x crop position. Accepts 'left', 'center', or 'right'. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
539 |
* @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
540 |
* } |
16 | 541 |
* @return array|false Returned array matches parameters for `imagecopyresampled()`. False on failure. |
0 | 542 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
543 |
function image_resize_dimensions( $orig_w, $orig_h, $dest_w, $dest_h, $crop = false ) { |
0 | 544 |
|
9 | 545 |
if ( $orig_w <= 0 || $orig_h <= 0 ) { |
0 | 546 |
return false; |
9 | 547 |
} |
16 | 548 |
// At least one of $dest_w or $dest_h must be specific. |
9 | 549 |
if ( $dest_w <= 0 && $dest_h <= 0 ) { |
0 | 550 |
return false; |
9 | 551 |
} |
0 | 552 |
|
5 | 553 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
554 |
* Filters whether to preempt calculating the image resize dimensions. |
5 | 555 |
* |
16 | 556 |
* Returning a non-null value from the filter will effectively short-circuit |
5 | 557 |
* image_resize_dimensions(), returning that value instead. |
558 |
* |
|
559 |
* @since 3.4.0 |
|
560 |
* |
|
561 |
* @param null|mixed $null Whether to preempt output of the resize dimensions. |
|
562 |
* @param int $orig_w Original width in pixels. |
|
563 |
* @param int $orig_h Original height in pixels. |
|
564 |
* @param int $dest_w New width in pixels. |
|
565 |
* @param int $dest_h New height in pixels. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
566 |
* @param bool|array $crop Whether to crop image to specified width and height or resize. |
5 | 567 |
* An array can specify positioning of the crop area. Default false. |
568 |
*/ |
|
0 | 569 |
$output = apply_filters( 'image_resize_dimensions', null, $orig_w, $orig_h, $dest_w, $dest_h, $crop ); |
16 | 570 |
|
9 | 571 |
if ( null !== $output ) { |
0 | 572 |
return $output; |
9 | 573 |
} |
0 | 574 |
|
16 | 575 |
// Stop if the destination size is larger than the original image dimensions. |
576 |
if ( empty( $dest_h ) ) { |
|
577 |
if ( $orig_w < $dest_w ) { |
|
578 |
return false; |
|
579 |
} |
|
580 |
} elseif ( empty( $dest_w ) ) { |
|
581 |
if ( $orig_h < $dest_h ) { |
|
582 |
return false; |
|
583 |
} |
|
584 |
} else { |
|
585 |
if ( $orig_w < $dest_w && $orig_h < $dest_h ) { |
|
586 |
return false; |
|
587 |
} |
|
588 |
} |
|
589 |
||
0 | 590 |
if ( $crop ) { |
16 | 591 |
/* |
592 |
* Crop the largest possible portion of the original image that we can size to $dest_w x $dest_h. |
|
593 |
* Note that the requested crop dimensions are used as a maximum bounding box for the original image. |
|
594 |
* If the original image's width or height is less than the requested width or height |
|
595 |
* only the greater one will be cropped. |
|
596 |
* For example when the original image is 600x300, and the requested crop dimensions are 400x400, |
|
597 |
* the resulting image will be 400x300. |
|
598 |
*/ |
|
0 | 599 |
$aspect_ratio = $orig_w / $orig_h; |
9 | 600 |
$new_w = min( $dest_w, $orig_w ); |
601 |
$new_h = min( $dest_h, $orig_h ); |
|
0 | 602 |
|
5 | 603 |
if ( ! $new_w ) { |
604 |
$new_w = (int) round( $new_h * $aspect_ratio ); |
|
0 | 605 |
} |
606 |
||
5 | 607 |
if ( ! $new_h ) { |
608 |
$new_h = (int) round( $new_w / $aspect_ratio ); |
|
0 | 609 |
} |
610 |
||
9 | 611 |
$size_ratio = max( $new_w / $orig_w, $new_h / $orig_h ); |
612 |
||
613 |
$crop_w = round( $new_w / $size_ratio ); |
|
614 |
$crop_h = round( $new_h / $size_ratio ); |
|
0 | 615 |
|
5 | 616 |
if ( ! is_array( $crop ) || count( $crop ) !== 2 ) { |
617 |
$crop = array( 'center', 'center' ); |
|
618 |
} |
|
619 |
||
620 |
list( $x, $y ) = $crop; |
|
621 |
||
622 |
if ( 'left' === $x ) { |
|
623 |
$s_x = 0; |
|
624 |
} elseif ( 'right' === $x ) { |
|
625 |
$s_x = $orig_w - $crop_w; |
|
626 |
} else { |
|
627 |
$s_x = floor( ( $orig_w - $crop_w ) / 2 ); |
|
628 |
} |
|
629 |
||
630 |
if ( 'top' === $y ) { |
|
631 |
$s_y = 0; |
|
632 |
} elseif ( 'bottom' === $y ) { |
|
633 |
$s_y = $orig_h - $crop_h; |
|
634 |
} else { |
|
635 |
$s_y = floor( ( $orig_h - $crop_h ) / 2 ); |
|
636 |
} |
|
0 | 637 |
} else { |
16 | 638 |
// Resize using $dest_w x $dest_h as a maximum bounding box. |
0 | 639 |
$crop_w = $orig_w; |
640 |
$crop_h = $orig_h; |
|
641 |
||
642 |
$s_x = 0; |
|
643 |
$s_y = 0; |
|
644 |
||
645 |
list( $new_w, $new_h ) = wp_constrain_dimensions( $orig_w, $orig_h, $dest_w, $dest_h ); |
|
646 |
} |
|
647 |
||
16 | 648 |
if ( wp_fuzzy_number_match( $new_w, $orig_w ) && wp_fuzzy_number_match( $new_h, $orig_h ) ) { |
649 |
// The new size has virtually the same dimensions as the original image. |
|
650 |
||
651 |
/** |
|
652 |
* Filters whether to proceed with making an image sub-size with identical dimensions |
|
653 |
* with the original/source image. Differences of 1px may be due to rounding and are ignored. |
|
654 |
* |
|
655 |
* @since 5.3.0 |
|
656 |
* |
|
657 |
* @param bool $proceed The filtered value. |
|
658 |
* @param int $orig_w Original image width. |
|
659 |
* @param int $orig_h Original image height. |
|
660 |
*/ |
|
661 |
$proceed = (bool) apply_filters( 'wp_image_resize_identical_dimensions', false, $orig_w, $orig_h ); |
|
662 |
||
663 |
if ( ! $proceed ) { |
|
664 |
return false; |
|
665 |
} |
|
5 | 666 |
} |
0 | 667 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
668 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
669 |
* The return array matches the parameters to imagecopyresampled(). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
670 |
* int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
671 |
*/ |
0 | 672 |
return array( 0, 0, (int) $s_x, (int) $s_y, (int) $new_w, (int) $new_h, (int) $crop_w, (int) $crop_h ); |
673 |
} |
|
674 |
||
675 |
/** |
|
5 | 676 |
* Resizes an image to make a thumbnail or intermediate size. |
0 | 677 |
* |
678 |
* The returned array has the file size, the image width, and image height. The |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
679 |
* {@see 'image_make_intermediate_size'} filter can be used to hook in and change the |
0 | 680 |
* values of the returned array. The only parameter is the resized file path. |
681 |
* |
|
682 |
* @since 2.5.0 |
|
683 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
684 |
* @param string $file File path. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
685 |
* @param int $width Image width. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
686 |
* @param int $height Image height. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
687 |
* @param bool|array $crop { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
688 |
* Optional. Image cropping behavior. If false, the image will be scaled (default). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
689 |
* If true, image will be cropped to the specified dimensions using center positions. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
690 |
* If an array, the image will be cropped using the array to specify the crop location: |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
691 |
* |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
692 |
* @type string $0 The x crop position. Accepts 'left', 'center', or 'right'. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
693 |
* @type string $1 The y crop position. Accepts 'top', 'center', or 'bottom'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
694 |
* } |
16 | 695 |
* @return array|false Metadata array on success. False if no image was created. |
0 | 696 |
*/ |
697 |
function image_make_intermediate_size( $file, $width, $height, $crop = false ) { |
|
698 |
if ( $width || $height ) { |
|
699 |
$editor = wp_get_image_editor( $file ); |
|
700 |
||
9 | 701 |
if ( is_wp_error( $editor ) || is_wp_error( $editor->resize( $width, $height, $crop ) ) ) { |
0 | 702 |
return false; |
9 | 703 |
} |
0 | 704 |
|
705 |
$resized_file = $editor->save(); |
|
706 |
||
707 |
if ( ! is_wp_error( $resized_file ) && $resized_file ) { |
|
708 |
unset( $resized_file['path'] ); |
|
709 |
return $resized_file; |
|
710 |
} |
|
711 |
} |
|
712 |
return false; |
|
713 |
} |
|
714 |
||
715 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
716 |
* Helper function to test if aspect ratios for two images match. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
717 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
718 |
* @since 4.6.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
719 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
720 |
* @param int $source_width Width of the first image in pixels. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
721 |
* @param int $source_height Height of the first image in pixels. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
722 |
* @param int $target_width Width of the second image in pixels. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
723 |
* @param int $target_height Height of the second image in pixels. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
724 |
* @return bool True if aspect ratios match within 1px. False if not. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
725 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
726 |
function wp_image_matches_ratio( $source_width, $source_height, $target_width, $target_height ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
727 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
728 |
* To test for varying crops, we constrain the dimensions of the larger image |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
729 |
* to the dimensions of the smaller image and see if they match. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
730 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
731 |
if ( $source_width > $target_width ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
732 |
$constrained_size = wp_constrain_dimensions( $source_width, $source_height, $target_width ); |
9 | 733 |
$expected_size = array( $target_width, $target_height ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
734 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
735 |
$constrained_size = wp_constrain_dimensions( $target_width, $target_height, $source_width ); |
9 | 736 |
$expected_size = array( $source_width, $source_height ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
737 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
738 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
739 |
// If the image dimensions are within 1px of the expected size, we consider it a match. |
16 | 740 |
$matched = ( wp_fuzzy_number_match( $constrained_size[0], $expected_size[0] ) && wp_fuzzy_number_match( $constrained_size[1], $expected_size[1] ) ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
741 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
742 |
return $matched; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
743 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
744 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
745 |
/** |
5 | 746 |
* Retrieves the image's intermediate size (resized) path, width, and height. |
0 | 747 |
* |
748 |
* The $size parameter can be an array with the width and height respectively. |
|
749 |
* If the size matches the 'sizes' metadata array for width and height, then it |
|
750 |
* will be used. If there is no direct match, then the nearest image size larger |
|
751 |
* than the specified size will be used. If nothing is found, then the function |
|
752 |
* will break out and return false. |
|
753 |
* |
|
754 |
* The metadata 'sizes' is used for compatible sizes that can be used for the |
|
755 |
* parameter $size value. |
|
756 |
* |
|
757 |
* The url path will be given, when the $size parameter is a string. |
|
758 |
* |
|
759 |
* If you are passing an array for the $size, you should consider using |
|
760 |
* add_image_size() so that a cropped version is generated. It's much more |
|
761 |
* efficient than having to find the closest-sized image and then having the |
|
762 |
* browser scale down the image. |
|
763 |
* |
|
764 |
* @since 2.5.0 |
|
765 |
* |
|
5 | 766 |
* @param int $post_id Attachment ID. |
18 | 767 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
768 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
16 | 769 |
* @return array|false { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
770 |
* Array of file relative path, width, and height on success. Additionally includes absolute |
18 | 771 |
* path and URL if registered size is passed to `$size` parameter. False on failure. |
772 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
773 |
* @type string $file Filename of image. |
18 | 774 |
* @type int $width Width of image in pixels. |
775 |
* @type int $height Height of image in pixels. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
776 |
* @type string $path Path of image relative to uploads directory. |
18 | 777 |
* @type string $url URL of image. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
778 |
* } |
0 | 779 |
*/ |
5 | 780 |
function image_get_intermediate_size( $post_id, $size = 'thumbnail' ) { |
16 | 781 |
$imagedata = wp_get_attachment_metadata( $post_id ); |
782 |
||
783 |
if ( ! $size || ! is_array( $imagedata ) || empty( $imagedata['sizes'] ) ) { |
|
0 | 784 |
return false; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
785 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
786 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
787 |
$data = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
788 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
789 |
// Find the best match when '$size' is an array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
790 |
if ( is_array( $size ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
791 |
$candidates = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
792 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
793 |
if ( ! isset( $imagedata['file'] ) && isset( $imagedata['sizes']['full'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
794 |
$imagedata['height'] = $imagedata['sizes']['full']['height']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
795 |
$imagedata['width'] = $imagedata['sizes']['full']['width']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
796 |
} |
5 | 797 |
|
0 | 798 |
foreach ( $imagedata['sizes'] as $_size => $data ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
799 |
// If there's an exact match to an existing image size, short circuit. |
18 | 800 |
if ( (int) $data['width'] === (int) $size[0] && (int) $data['height'] === (int) $size[1] ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
801 |
$candidates[ $data['width'] * $data['height'] ] = $data; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
802 |
break; |
0 | 803 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
804 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
805 |
// If it's not an exact match, consider larger sizes with the same aspect ratio. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
806 |
if ( $data['width'] >= $size[0] && $data['height'] >= $size[1] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
807 |
// If '0' is passed to either size, we test ratios against the original file. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
808 |
if ( 0 === $size[0] || 0 === $size[1] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
809 |
$same_ratio = wp_image_matches_ratio( $data['width'], $data['height'], $imagedata['width'], $imagedata['height'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
810 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
811 |
$same_ratio = wp_image_matches_ratio( $data['width'], $data['height'], $size[0], $size[1] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
812 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
813 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
814 |
if ( $same_ratio ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
815 |
$candidates[ $data['width'] * $data['height'] ] = $data; |
0 | 816 |
} |
817 |
} |
|
818 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
819 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
820 |
if ( ! empty( $candidates ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
821 |
// Sort the array by size if we have more than one candidate. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
822 |
if ( 1 < count( $candidates ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
823 |
ksort( $candidates ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
824 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
825 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
826 |
$data = array_shift( $candidates ); |
9 | 827 |
/* |
828 |
* When the size requested is smaller than the thumbnail dimensions, we |
|
829 |
* fall back to the thumbnail size to maintain backward compatibility with |
|
830 |
* pre 4.6 versions of WordPress. |
|
831 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
832 |
} elseif ( ! empty( $imagedata['sizes']['thumbnail'] ) && $imagedata['sizes']['thumbnail']['width'] >= $size[0] && $imagedata['sizes']['thumbnail']['width'] >= $size[1] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
833 |
$data = $imagedata['sizes']['thumbnail']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
834 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
835 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
836 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
837 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
838 |
// Constrain the width and height attributes to the requested values. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
839 |
list( $data['width'], $data['height'] ) = image_constrain_size_for_editor( $data['width'], $data['height'], $size ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
840 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
841 |
} elseif ( ! empty( $imagedata['sizes'][ $size ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
842 |
$data = $imagedata['sizes'][ $size ]; |
0 | 843 |
} |
844 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
845 |
// If we still don't have a match at this point, return false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
846 |
if ( empty( $data ) ) { |
0 | 847 |
return false; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
848 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
849 |
|
16 | 850 |
// Include the full filesystem path of the intermediate file. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
851 |
if ( empty( $data['path'] ) && ! empty( $data['file'] ) && ! empty( $imagedata['file'] ) ) { |
9 | 852 |
$file_url = wp_get_attachment_url( $post_id ); |
853 |
$data['path'] = path_join( dirname( $imagedata['file'] ), $data['file'] ); |
|
854 |
$data['url'] = path_join( dirname( $file_url ), $data['file'] ); |
|
0 | 855 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
856 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
857 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
858 |
* Filters the output of image_get_intermediate_size() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
859 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
860 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
861 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
862 |
* @see image_get_intermediate_size() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
863 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
864 |
* @param array $data Array of file relative path, width, and height on success. May also include |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
865 |
* file absolute path and URL. |
18 | 866 |
* @param int $post_id The ID of the image attachment. |
867 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
|
868 |
* an array of width and height values in pixels (in that order). |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
869 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
870 |
return apply_filters( 'image_get_intermediate_size', $data, $post_id, $size ); |
0 | 871 |
} |
872 |
||
873 |
/** |
|
16 | 874 |
* Gets the available intermediate image size names. |
5 | 875 |
* |
0 | 876 |
* @since 3.0.0 |
5 | 877 |
* |
16 | 878 |
* @return string[] An array of image size names. |
0 | 879 |
*/ |
880 |
function get_intermediate_image_sizes() { |
|
16 | 881 |
$default_sizes = array( 'thumbnail', 'medium', 'medium_large', 'large' ); |
882 |
$additional_sizes = wp_get_additional_image_sizes(); |
|
883 |
||
884 |
if ( ! empty( $additional_sizes ) ) { |
|
885 |
$default_sizes = array_merge( $default_sizes, array_keys( $additional_sizes ) ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
886 |
} |
0 | 887 |
|
5 | 888 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
889 |
* Filters the list of intermediate image sizes. |
5 | 890 |
* |
891 |
* @since 2.5.0 |
|
892 |
* |
|
16 | 893 |
* @param string[] $default_sizes An array of intermediate image size names. Defaults |
894 |
* are 'thumbnail', 'medium', 'medium_large', 'large'. |
|
5 | 895 |
*/ |
16 | 896 |
return apply_filters( 'intermediate_image_sizes', $default_sizes ); |
0 | 897 |
} |
898 |
||
899 |
/** |
|
16 | 900 |
* Returns a normalized list of all currently registered image sub-sizes. |
901 |
* |
|
902 |
* @since 5.3.0 |
|
903 |
* @uses wp_get_additional_image_sizes() |
|
904 |
* @uses get_intermediate_image_sizes() |
|
905 |
* |
|
19 | 906 |
* @return array[] Associative array of arrays of image sub-size information, |
907 |
* keyed by image size name. |
|
16 | 908 |
*/ |
909 |
function wp_get_registered_image_subsizes() { |
|
910 |
$additional_sizes = wp_get_additional_image_sizes(); |
|
911 |
$all_sizes = array(); |
|
912 |
||
913 |
foreach ( get_intermediate_image_sizes() as $size_name ) { |
|
914 |
$size_data = array( |
|
915 |
'width' => 0, |
|
916 |
'height' => 0, |
|
917 |
'crop' => false, |
|
918 |
); |
|
919 |
||
920 |
if ( isset( $additional_sizes[ $size_name ]['width'] ) ) { |
|
921 |
// For sizes added by plugins and themes. |
|
18 | 922 |
$size_data['width'] = (int) $additional_sizes[ $size_name ]['width']; |
16 | 923 |
} else { |
924 |
// For default sizes set in options. |
|
18 | 925 |
$size_data['width'] = (int) get_option( "{$size_name}_size_w" ); |
16 | 926 |
} |
927 |
||
928 |
if ( isset( $additional_sizes[ $size_name ]['height'] ) ) { |
|
18 | 929 |
$size_data['height'] = (int) $additional_sizes[ $size_name ]['height']; |
16 | 930 |
} else { |
18 | 931 |
$size_data['height'] = (int) get_option( "{$size_name}_size_h" ); |
16 | 932 |
} |
933 |
||
934 |
if ( empty( $size_data['width'] ) && empty( $size_data['height'] ) ) { |
|
935 |
// This size isn't set. |
|
936 |
continue; |
|
937 |
} |
|
938 |
||
939 |
if ( isset( $additional_sizes[ $size_name ]['crop'] ) ) { |
|
940 |
$size_data['crop'] = $additional_sizes[ $size_name ]['crop']; |
|
941 |
} else { |
|
942 |
$size_data['crop'] = get_option( "{$size_name}_crop" ); |
|
943 |
} |
|
944 |
||
945 |
if ( ! is_array( $size_data['crop'] ) || empty( $size_data['crop'] ) ) { |
|
946 |
$size_data['crop'] = (bool) $size_data['crop']; |
|
947 |
} |
|
948 |
||
949 |
$all_sizes[ $size_name ] = $size_data; |
|
950 |
} |
|
951 |
||
952 |
return $all_sizes; |
|
953 |
} |
|
954 |
||
955 |
/** |
|
956 |
* Retrieves an image to represent an attachment. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
957 |
* |
0 | 958 |
* @since 2.5.0 |
959 |
* |
|
5 | 960 |
* @param int $attachment_id Image attachment ID. |
18 | 961 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of |
962 |
* width and height values in pixels (in that order). Default 'thumbnail'. |
|
16 | 963 |
* @param bool $icon Optional. Whether the image should fall back to a mime type icon. Default false. |
964 |
* @return array|false { |
|
965 |
* Array of image data, or boolean false if no image is available. |
|
966 |
* |
|
967 |
* @type string $0 Image source URL. |
|
968 |
* @type int $1 Image width in pixels. |
|
969 |
* @type int $2 Image height in pixels. |
|
970 |
* @type bool $3 Whether the image is a resized image. |
|
971 |
* } |
|
0 | 972 |
*/ |
5 | 973 |
function wp_get_attachment_image_src( $attachment_id, $size = 'thumbnail', $icon = false ) { |
16 | 974 |
// Get a thumbnail or intermediate image if there is one. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
975 |
$image = image_downsize( $attachment_id, $size ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
976 |
if ( ! $image ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
977 |
$src = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
978 |
|
16 | 979 |
if ( $icon ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
980 |
$src = wp_mime_type_icon( $attachment_id, '.svg' ); |
16 | 981 |
|
982 |
if ( $src ) { |
|
983 |
/** This filter is documented in wp-includes/post.php */ |
|
984 |
$icon_dir = apply_filters( 'icon_dir', ABSPATH . WPINC . '/images/media' ); |
|
985 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
986 |
$src_file = $icon_dir . '/' . wp_basename( $src ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
987 |
|
18 | 988 |
list( $width, $height ) = wp_getimagesize( $src_file ); |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
989 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
990 |
$ext = strtolower( substr( $src_file, -4 ) ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
991 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
992 |
if ( '.svg' === $ext ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
993 |
// SVG does not have true dimensions, so this assigns width and height directly. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
994 |
$width = 48; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
995 |
$height = 64; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
996 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
997 |
list( $width, $height ) = wp_getimagesize( $src_file ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
998 |
} |
16 | 999 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1000 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1001 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1002 |
if ( $src && $width && $height ) { |
16 | 1003 |
$image = array( $src, $width, $height, false ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1004 |
} |
0 | 1005 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1006 |
/** |
16 | 1007 |
* Filters the attachment image source result. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1008 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1009 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1010 |
* |
16 | 1011 |
* @param array|false $image { |
1012 |
* Array of image data, or boolean false if no image is available. |
|
1013 |
* |
|
1014 |
* @type string $0 Image source URL. |
|
1015 |
* @type int $1 Image width in pixels. |
|
1016 |
* @type int $2 Image height in pixels. |
|
1017 |
* @type bool $3 Whether the image is a resized image. |
|
1018 |
* } |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1019 |
* @param int $attachment_id Image attachment ID. |
18 | 1020 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
1021 |
* an array of width and height values in pixels (in that order). |
|
16 | 1022 |
* @param bool $icon Whether the image should be treated as an icon. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1023 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1024 |
return apply_filters( 'wp_get_attachment_image_src', $image, $attachment_id, $size, $icon ); |
0 | 1025 |
} |
1026 |
||
1027 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1028 |
* Gets an HTML img element representing an image attachment. |
0 | 1029 |
* |
5 | 1030 |
* While `$size` will accept an array, it is better to register a size with |
0 | 1031 |
* add_image_size() so that a cropped version is generated. It's much more |
1032 |
* efficient than having to find the closest-sized image and then having the |
|
1033 |
* browser scale down the image. |
|
1034 |
* |
|
1035 |
* @since 2.5.0 |
|
16 | 1036 |
* @since 4.4.0 The `$srcset` and `$sizes` attributes were added. |
1037 |
* @since 5.5.0 The `$loading` attribute was added. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1038 |
* @since 6.1.0 The `$decoding` attribute was added. |
0 | 1039 |
* |
5 | 1040 |
* @param int $attachment_id Image attachment ID. |
18 | 1041 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
1042 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
5 | 1043 |
* @param bool $icon Optional. Whether the image should be treated as an icon. Default false. |
16 | 1044 |
* @param string|array $attr { |
1045 |
* Optional. Attributes for the image markup. |
|
1046 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1047 |
* @type string $src Image attachment URL. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1048 |
* @type string $class CSS class name or space-separated list of classes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1049 |
* Default `attachment-$size_class size-$size_class`, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1050 |
* where `$size_class` is the image size being requested. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1051 |
* @type string $alt Image description for the alt attribute. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1052 |
* @type string $srcset The 'srcset' attribute value. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1053 |
* @type string $sizes The 'sizes' attribute value. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1054 |
* @type string|false $loading The 'loading' attribute value. Passing a value of false |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1055 |
* will result in the attribute being omitted for the image. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1056 |
* Default determined by {@see wp_get_loading_optimization_attributes()}. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1057 |
* @type string $decoding The 'decoding' attribute value. Possible values are |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1058 |
* 'async' (default), 'sync', or 'auto'. Passing false or an empty |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1059 |
* string will result in the attribute being omitted. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1060 |
* @type string $fetchpriority The 'fetchpriority' attribute value, whether `high`, `low`, or `auto`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1061 |
* Default determined by {@see wp_get_loading_optimization_attributes()}. |
16 | 1062 |
* } |
0 | 1063 |
* @return string HTML img element or empty string on failure. |
1064 |
*/ |
|
9 | 1065 |
function wp_get_attachment_image( $attachment_id, $size = 'thumbnail', $icon = false, $attr = '' ) { |
1066 |
$html = ''; |
|
1067 |
$image = wp_get_attachment_image_src( $attachment_id, $size, $icon ); |
|
16 | 1068 |
|
0 | 1069 |
if ( $image ) { |
16 | 1070 |
list( $src, $width, $height ) = $image; |
1071 |
||
1072 |
$attachment = get_post( $attachment_id ); |
|
1073 |
$size_class = $size; |
|
1074 |
||
5 | 1075 |
if ( is_array( $size_class ) ) { |
18 | 1076 |
$size_class = implode( 'x', $size_class ); |
5 | 1077 |
} |
16 | 1078 |
|
0 | 1079 |
$default_attr = array( |
9 | 1080 |
'src' => $src, |
1081 |
'class' => "attachment-$size_class size-$size_class", |
|
1082 |
'alt' => trim( strip_tags( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) ) ), |
|
0 | 1083 |
); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1084 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1085 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1086 |
* Filters the context in which wp_get_attachment_image() is used. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1087 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1088 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1089 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1090 |
* @param string $context The context. Default 'wp_get_attachment_image'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1091 |
*/ |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1092 |
$context = apply_filters( 'wp_get_attachment_image_context', 'wp_get_attachment_image' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1093 |
$attr = wp_parse_args( $attr, $default_attr ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1094 |
$attr['width'] = $width; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1095 |
$attr['height'] = $height; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1096 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1097 |
$loading_optimization_attr = wp_get_loading_optimization_attributes( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1098 |
'img', |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1099 |
$attr, |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1100 |
$context |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1101 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1102 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1103 |
// Add loading optimization attributes if not available. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1104 |
$attr = array_merge( $attr, $loading_optimization_attr ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1105 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1106 |
// Omit the `decoding` attribute if the value is invalid according to the spec. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1107 |
if ( empty( $attr['decoding'] ) || ! in_array( $attr['decoding'], array( 'async', 'sync', 'auto' ), true ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1108 |
unset( $attr['decoding'] ); |
16 | 1109 |
} |
1110 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1111 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1112 |
* If the default value of `lazy` for the `loading` attribute is overridden |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1113 |
* to omit the attribute for this image, ensure it is not included. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1114 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1115 |
if ( isset( $attr['loading'] ) && ! $attr['loading'] ) { |
16 | 1116 |
unset( $attr['loading'] ); |
1117 |
} |
|
1118 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1119 |
// If the `fetchpriority` attribute is overridden and set to false or an empty string. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1120 |
if ( isset( $attr['fetchpriority'] ) && ! $attr['fetchpriority'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1121 |
unset( $attr['fetchpriority'] ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1122 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1123 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1124 |
// Generate 'srcset' and 'sizes' if not already present. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1125 |
if ( empty( $attr['srcset'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1126 |
$image_meta = wp_get_attachment_metadata( $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1127 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1128 |
if ( is_array( $image_meta ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1129 |
$size_array = array( absint( $width ), absint( $height ) ); |
9 | 1130 |
$srcset = wp_calculate_image_srcset( $size_array, $src, $image_meta, $attachment_id ); |
1131 |
$sizes = wp_calculate_image_sizes( $size_array, $src, $image_meta, $attachment_id ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1132 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1133 |
if ( $srcset && ( $sizes || ! empty( $attr['sizes'] ) ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1134 |
$attr['srcset'] = $srcset; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1135 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1136 |
if ( empty( $attr['sizes'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1137 |
$attr['sizes'] = $sizes; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1138 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1139 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1140 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1141 |
} |
5 | 1142 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1143 |
/** This filter is documented in wp-includes/media.php */ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1144 |
$add_auto_sizes = apply_filters( 'wp_img_tag_add_auto_sizes', true ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1145 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1146 |
// Adds 'auto' to the sizes attribute if applicable. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1147 |
if ( |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1148 |
$add_auto_sizes && |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1149 |
isset( $attr['loading'] ) && |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1150 |
'lazy' === $attr['loading'] && |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1151 |
isset( $attr['sizes'] ) && |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1152 |
! wp_sizes_attribute_includes_valid_auto( $attr['sizes'] ) |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1153 |
) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1154 |
$attr['sizes'] = 'auto, ' . $attr['sizes']; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1155 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1156 |
|
5 | 1157 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1158 |
* Filters the list of attachment image attributes. |
5 | 1159 |
* |
1160 |
* @since 2.8.0 |
|
1161 |
* |
|
18 | 1162 |
* @param string[] $attr Array of attribute values for the image markup, keyed by attribute name. |
16 | 1163 |
* See wp_get_attachment_image(). |
5 | 1164 |
* @param WP_Post $attachment Image attachment post. |
18 | 1165 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
1166 |
* an array of width and height values in pixels (in that order). |
|
5 | 1167 |
*/ |
1168 |
$attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment, $size ); |
|
16 | 1169 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1170 |
if ( isset( $attr['height'] ) && is_numeric( $attr['height'] ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1171 |
$height = absint( $attr['height'] ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1172 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1173 |
if ( isset( $attr['width'] ) && is_numeric( $attr['width'] ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1174 |
$width = absint( $attr['width'] ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1175 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1176 |
unset( $attr['height'], $attr['width'] ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1177 |
$attr = array_map( 'esc_attr', $attr ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1178 |
$hwstring = image_hwstring( $width, $height ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1179 |
$html = rtrim( "<img $hwstring" ); |
16 | 1180 |
|
0 | 1181 |
foreach ( $attr as $name => $value ) { |
1182 |
$html .= " $name=" . '"' . $value . '"'; |
|
1183 |
} |
|
16 | 1184 |
|
0 | 1185 |
$html .= ' />'; |
1186 |
} |
|
1187 |
||
18 | 1188 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1189 |
* Filters the HTML img element representing an image attachment. |
18 | 1190 |
* |
1191 |
* @since 5.6.0 |
|
1192 |
* |
|
1193 |
* @param string $html HTML img element or empty string on failure. |
|
1194 |
* @param int $attachment_id Image attachment ID. |
|
1195 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
|
1196 |
* an array of width and height values in pixels (in that order). |
|
1197 |
* @param bool $icon Whether the image should be treated as an icon. |
|
1198 |
* @param string[] $attr Array of attribute values for the image markup, keyed by attribute name. |
|
1199 |
* See wp_get_attachment_image(). |
|
1200 |
*/ |
|
1201 |
return apply_filters( 'wp_get_attachment_image', $html, $attachment_id, $size, $icon, $attr ); |
|
0 | 1202 |
} |
1203 |
||
1204 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1205 |
* Gets the URL of an image attachment. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1206 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1207 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1208 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1209 |
* @param int $attachment_id Image attachment ID. |
18 | 1210 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of |
1211 |
* width and height values in pixels (in that order). Default 'thumbnail'. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1212 |
* @param bool $icon Optional. Whether the image should be treated as an icon. Default false. |
18 | 1213 |
* @return string|false Attachment URL or false if no image is available. If `$size` does not match |
1214 |
* any registered image size, the original image URL will be returned. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1215 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1216 |
function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1217 |
$image = wp_get_attachment_image_src( $attachment_id, $size, $icon ); |
19 | 1218 |
return isset( $image[0] ) ? $image[0] : false; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1219 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1220 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1221 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1222 |
* Gets the attachment path relative to the upload directory. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1223 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1224 |
* @since 4.4.1 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1225 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1226 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1227 |
* @param string $file Attachment file name. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1228 |
* @return string Attachment path relative to the upload directory. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1229 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1230 |
function _wp_get_attachment_relative_path( $file ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1231 |
$dirname = dirname( $file ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1232 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1233 |
if ( '.' === $dirname ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1234 |
return ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1235 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1236 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1237 |
if ( str_contains( $dirname, 'wp-content/uploads' ) ) { |
16 | 1238 |
// Get the directory name relative to the upload directory (back compat for pre-2.7 uploads). |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1239 |
$dirname = substr( $dirname, strpos( $dirname, 'wp-content/uploads' ) + 18 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1240 |
$dirname = ltrim( $dirname, '/' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1241 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1242 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1243 |
return $dirname; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1244 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1245 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1246 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1247 |
* Gets the image size as array from its meta data. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1248 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1249 |
* Used for responsive images. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1250 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1251 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1252 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1253 |
* |
18 | 1254 |
* @param string $size_name Image size. Accepts any registered image size name. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1255 |
* @param array $image_meta The image meta data. |
18 | 1256 |
* @return array|false { |
1257 |
* Array of width and height or false if the size isn't present in the meta data. |
|
1258 |
* |
|
1259 |
* @type int $0 Image width. |
|
1260 |
* @type int $1 Image height. |
|
1261 |
* } |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1262 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1263 |
function _wp_get_image_size_from_meta( $size_name, $image_meta ) { |
16 | 1264 |
if ( 'full' === $size_name ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1265 |
return array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1266 |
absint( $image_meta['width'] ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1267 |
absint( $image_meta['height'] ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1268 |
); |
9 | 1269 |
} elseif ( ! empty( $image_meta['sizes'][ $size_name ] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1270 |
return array( |
9 | 1271 |
absint( $image_meta['sizes'][ $size_name ]['width'] ), |
1272 |
absint( $image_meta['sizes'][ $size_name ]['height'] ), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1273 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1274 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1275 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1276 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1277 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1278 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1279 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1280 |
* Retrieves the value for an image attachment's 'srcset' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1281 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1282 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1283 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1284 |
* @see wp_calculate_image_srcset() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1285 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1286 |
* @param int $attachment_id Image attachment ID. |
18 | 1287 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1288 |
* width and height values in pixels (in that order). Default 'medium'. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1289 |
* @param array|null $image_meta Optional. The image meta data as returned by 'wp_get_attachment_metadata()'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1290 |
* Default null. |
18 | 1291 |
* @return string|false A 'srcset' value string or false. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1292 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1293 |
function wp_get_attachment_image_srcset( $attachment_id, $size = 'medium', $image_meta = null ) { |
16 | 1294 |
$image = wp_get_attachment_image_src( $attachment_id, $size ); |
1295 |
||
1296 |
if ( ! $image ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1297 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1298 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1299 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1300 |
if ( ! is_array( $image_meta ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1301 |
$image_meta = wp_get_attachment_metadata( $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1302 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1303 |
|
9 | 1304 |
$image_src = $image[0]; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1305 |
$size_array = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1306 |
absint( $image[1] ), |
9 | 1307 |
absint( $image[2] ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1308 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1309 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1310 |
return wp_calculate_image_srcset( $size_array, $image_src, $image_meta, $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1311 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1312 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1313 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1314 |
* A helper function to calculate the image sources to include in a 'srcset' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1315 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1316 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1317 |
* |
16 | 1318 |
* @param int[] $size_array { |
1319 |
* An array of width and height values. |
|
1320 |
* |
|
1321 |
* @type int $0 The width in pixels. |
|
1322 |
* @type int $1 The height in pixels. |
|
1323 |
* } |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1324 |
* @param string $image_src The 'src' of the image. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1325 |
* @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. |
16 | 1326 |
* @param int $attachment_id Optional. The image attachment ID. Default 0. |
18 | 1327 |
* @return string|false The 'srcset' attribute value. False on error or when only one source exists. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1328 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1329 |
function wp_calculate_image_srcset( $size_array, $image_src, $image_meta, $attachment_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1330 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1331 |
* Pre-filters the image meta to be able to fix inconsistencies in the stored data. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1332 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1333 |
* @since 4.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1334 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1335 |
* @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. |
16 | 1336 |
* @param int[] $size_array { |
1337 |
* An array of requested width and height values. |
|
1338 |
* |
|
1339 |
* @type int $0 The width in pixels. |
|
1340 |
* @type int $1 The height in pixels. |
|
1341 |
* } |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1342 |
* @param string $image_src The 'src' of the image. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1343 |
* @param int $attachment_id The image attachment ID or 0 if not supplied. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1344 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1345 |
$image_meta = apply_filters( 'wp_calculate_image_srcset_meta', $image_meta, $size_array, $image_src, $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1346 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1347 |
if ( empty( $image_meta['sizes'] ) || ! isset( $image_meta['file'] ) || strlen( $image_meta['file'] ) < 4 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1348 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1349 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1350 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1351 |
$image_sizes = $image_meta['sizes']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1352 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1353 |
// Get the width and height of the image. |
9 | 1354 |
$image_width = (int) $size_array[0]; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1355 |
$image_height = (int) $size_array[1]; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1356 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1357 |
// Bail early if error/no width. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1358 |
if ( $image_width < 1 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1359 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1360 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1361 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1362 |
$image_basename = wp_basename( $image_meta['file'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1363 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1364 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1365 |
* WordPress flattens animated GIFs into one frame when generating intermediate sizes. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1366 |
* To avoid hiding animation in user content, if src is a full size GIF, a srcset attribute is not generated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1367 |
* If src is an intermediate size GIF, the full size is excluded from srcset to keep a flattened GIF from becoming animated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1368 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1369 |
if ( ! isset( $image_sizes['thumbnail']['mime-type'] ) || 'image/gif' !== $image_sizes['thumbnail']['mime-type'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1370 |
$image_sizes[] = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1371 |
'width' => $image_meta['width'], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1372 |
'height' => $image_meta['height'], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1373 |
'file' => $image_basename, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1374 |
); |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1375 |
} elseif ( str_contains( $image_src, $image_meta['file'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1376 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1377 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1378 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1379 |
// Retrieve the uploads sub-directory from the full size image. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1380 |
$dirname = _wp_get_attachment_relative_path( $image_meta['file'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1381 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1382 |
if ( $dirname ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1383 |
$dirname = trailingslashit( $dirname ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1384 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1385 |
|
9 | 1386 |
$upload_dir = wp_get_upload_dir(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1387 |
$image_baseurl = trailingslashit( $upload_dir['baseurl'] ) . $dirname; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1388 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1389 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1390 |
* If currently on HTTPS, prefer HTTPS URLs when we know they're supported by the domain |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1391 |
* (which is to say, when they share the domain name of the current request). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1392 |
*/ |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1393 |
if ( is_ssl() && ! str_starts_with( $image_baseurl, 'https' ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1394 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1395 |
* Since the `Host:` header might contain a port, it should |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1396 |
* be compared against the image URL using the same port. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1397 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1398 |
$parsed = parse_url( $image_baseurl ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1399 |
$domain = isset( $parsed['host'] ) ? $parsed['host'] : ''; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1400 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1401 |
if ( isset( $parsed['port'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1402 |
$domain .= ':' . $parsed['port']; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1403 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1404 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1405 |
if ( $_SERVER['HTTP_HOST'] === $domain ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1406 |
$image_baseurl = set_url_scheme( $image_baseurl, 'https' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1407 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1408 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1409 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1410 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1411 |
* Images that have been edited in WordPress after being uploaded will |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1412 |
* contain a unique hash. Look for that hash and use it later to filter |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1413 |
* out images that are leftovers from previous versions. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1414 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1415 |
$image_edited = preg_match( '/-e[0-9]{13}/', wp_basename( $image_src ), $image_edit_hash ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1416 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1417 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1418 |
* Filters the maximum image width to be included in a 'srcset' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1419 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1420 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1421 |
* |
16 | 1422 |
* @param int $max_width The maximum image width to be included in the 'srcset'. Default '2048'. |
1423 |
* @param int[] $size_array { |
|
1424 |
* An array of requested width and height values. |
|
1425 |
* |
|
1426 |
* @type int $0 The width in pixels. |
|
1427 |
* @type int $1 The height in pixels. |
|
1428 |
* } |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1429 |
*/ |
16 | 1430 |
$max_srcset_image_width = apply_filters( 'max_srcset_image_width', 2048, $size_array ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1431 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1432 |
// Array to hold URL candidates. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1433 |
$sources = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1434 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1435 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1436 |
* To make sure the ID matches our image src, we will check to see if any sizes in our attachment |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1437 |
* meta match our $image_src. If no matches are found we don't return a srcset to avoid serving |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1438 |
* an incorrect image. See #35045. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1439 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1440 |
$src_matched = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1441 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1442 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1443 |
* Loop through available images. Only use images that are resized |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1444 |
* versions of the same edit. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1445 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1446 |
foreach ( $image_sizes as $image ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1447 |
$is_src = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1448 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1449 |
// Check if image meta isn't corrupted. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1450 |
if ( ! is_array( $image ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1451 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1452 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1453 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1454 |
// If the file name is part of the `src`, we've confirmed a match. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1455 |
if ( ! $src_matched && str_contains( $image_src, $dirname . $image['file'] ) ) { |
16 | 1456 |
$src_matched = true; |
1457 |
$is_src = true; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1458 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1459 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1460 |
// Filter out images that are from previous edits. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1461 |
if ( $image_edited && ! strpos( $image['file'], $image_edit_hash[0] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1462 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1463 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1464 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1465 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1466 |
* Filters out images that are wider than '$max_srcset_image_width' unless |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1467 |
* that file is in the 'src' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1468 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1469 |
if ( $max_srcset_image_width && $image['width'] > $max_srcset_image_width && ! $is_src ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1470 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1471 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1472 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1473 |
// If the image dimensions are within 1px of the expected size, use it. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1474 |
if ( wp_image_matches_ratio( $image_width, $image_height, $image['width'], $image['height'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1475 |
// Add the URL, descriptor, and value to the sources array to be returned. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1476 |
$source = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1477 |
'url' => $image_baseurl . $image['file'], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1478 |
'descriptor' => 'w', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1479 |
'value' => $image['width'], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1480 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1481 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1482 |
// The 'src' image has to be the first in the 'srcset', because of a bug in iOS8. See #35030. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1483 |
if ( $is_src ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1484 |
$sources = array( $image['width'] => $source ) + $sources; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1485 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1486 |
$sources[ $image['width'] ] = $source; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1487 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1488 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1489 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1490 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1491 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1492 |
* Filters an image's 'srcset' sources. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1493 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1494 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1495 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1496 |
* @param array $sources { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1497 |
* One or more arrays of source data to include in the 'srcset'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1498 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1499 |
* @type array $width { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1500 |
* @type string $url The URL of an image source. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1501 |
* @type string $descriptor The descriptor type used in the image candidate string, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1502 |
* either 'w' or 'x'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1503 |
* @type int $value The source width if paired with a 'w' descriptor, or a |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1504 |
* pixel density value if paired with an 'x' descriptor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1505 |
* } |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1506 |
* } |
16 | 1507 |
* @param array $size_array { |
1508 |
* An array of requested width and height values. |
|
1509 |
* |
|
1510 |
* @type int $0 The width in pixels. |
|
1511 |
* @type int $1 The height in pixels. |
|
1512 |
* } |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1513 |
* @param string $image_src The 'src' of the image. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1514 |
* @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1515 |
* @param int $attachment_id Image attachment ID or 0. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1516 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1517 |
$sources = apply_filters( 'wp_calculate_image_srcset', $sources, $size_array, $image_src, $image_meta, $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1518 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1519 |
// Only return a 'srcset' value if there is more than one source. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1520 |
if ( ! $src_matched || ! is_array( $sources ) || count( $sources ) < 2 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1521 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1522 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1523 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1524 |
$srcset = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1525 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1526 |
foreach ( $sources as $source ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1527 |
$srcset .= str_replace( ' ', '%20', $source['url'] ) . ' ' . $source['value'] . $source['descriptor'] . ', '; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1528 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1529 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1530 |
return rtrim( $srcset, ', ' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1531 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1532 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1533 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1534 |
* Retrieves the value for an image attachment's 'sizes' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1535 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1536 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1537 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1538 |
* @see wp_calculate_image_sizes() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1539 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1540 |
* @param int $attachment_id Image attachment ID. |
18 | 1541 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of |
1542 |
* width and height values in pixels (in that order). Default 'medium'. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1543 |
* @param array|null $image_meta Optional. The image meta data as returned by 'wp_get_attachment_metadata()'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1544 |
* Default null. |
18 | 1545 |
* @return string|false A valid source size value for use in a 'sizes' attribute or false. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1546 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1547 |
function wp_get_attachment_image_sizes( $attachment_id, $size = 'medium', $image_meta = null ) { |
16 | 1548 |
$image = wp_get_attachment_image_src( $attachment_id, $size ); |
1549 |
||
1550 |
if ( ! $image ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1551 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1552 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1553 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1554 |
if ( ! is_array( $image_meta ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1555 |
$image_meta = wp_get_attachment_metadata( $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1556 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1557 |
|
9 | 1558 |
$image_src = $image[0]; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1559 |
$size_array = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1560 |
absint( $image[1] ), |
9 | 1561 |
absint( $image[2] ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1562 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1563 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1564 |
return wp_calculate_image_sizes( $size_array, $image_src, $image_meta, $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1565 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1566 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1567 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1568 |
* Creates a 'sizes' attribute value for an image. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1569 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1570 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1571 |
* |
18 | 1572 |
* @param string|int[] $size Image size. Accepts any registered image size name, or an array of |
1573 |
* width and height values in pixels (in that order). |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1574 |
* @param string|null $image_src Optional. The URL to the image file. Default null. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1575 |
* @param array|null $image_meta Optional. The image meta data as returned by 'wp_get_attachment_metadata()'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1576 |
* Default null. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1577 |
* @param int $attachment_id Optional. Image attachment ID. Either `$image_meta` or `$attachment_id` |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1578 |
* is needed when using the image size name as argument for `$size`. Default 0. |
18 | 1579 |
* @return string|false A valid source size value for use in a 'sizes' attribute or false. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1580 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1581 |
function wp_calculate_image_sizes( $size, $image_src = null, $image_meta = null, $attachment_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1582 |
$width = 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1583 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1584 |
if ( is_array( $size ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1585 |
$width = absint( $size[0] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1586 |
} elseif ( is_string( $size ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1587 |
if ( ! $image_meta && $attachment_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1588 |
$image_meta = wp_get_attachment_metadata( $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1589 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1590 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1591 |
if ( is_array( $image_meta ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1592 |
$size_array = _wp_get_image_size_from_meta( $size, $image_meta ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1593 |
if ( $size_array ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1594 |
$width = absint( $size_array[0] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1595 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1596 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1597 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1598 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1599 |
if ( ! $width ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1600 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1601 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1602 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1603 |
// Setup the default 'sizes' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1604 |
$sizes = sprintf( '(max-width: %1$dpx) 100vw, %1$dpx', $width ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1605 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1606 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1607 |
* Filters the output of 'wp_calculate_image_sizes()'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1608 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1609 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1610 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1611 |
* @param string $sizes A source size value for use in a 'sizes' attribute. |
18 | 1612 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
1613 |
* an array of width and height values in pixels (in that order). |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1614 |
* @param string|null $image_src The URL to the image file or null. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1615 |
* @param array|null $image_meta The image meta data as returned by wp_get_attachment_metadata() or null. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1616 |
* @param int $attachment_id Image attachment ID of the original image or 0. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1617 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1618 |
return apply_filters( 'wp_calculate_image_sizes', $sizes, $size, $image_src, $image_meta, $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1619 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1620 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1621 |
/** |
16 | 1622 |
* Determines if the image meta data is for the image source file. |
1623 |
* |
|
1624 |
* The image meta data is retrieved by attachment post ID. In some cases the post IDs may change. |
|
1625 |
* For example when the website is exported and imported at another website. Then the |
|
1626 |
* attachment post IDs that are in post_content for the exported website may not match |
|
1627 |
* the same attachments at the new website. |
|
1628 |
* |
|
1629 |
* @since 5.5.0 |
|
1630 |
* |
|
1631 |
* @param string $image_location The full path or URI to the image file. |
|
1632 |
* @param array $image_meta The attachment meta data as returned by 'wp_get_attachment_metadata()'. |
|
1633 |
* @param int $attachment_id Optional. The image attachment ID. Default 0. |
|
1634 |
* @return bool Whether the image meta is for this image file. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1635 |
*/ |
16 | 1636 |
function wp_image_file_matches_image_meta( $image_location, $image_meta, $attachment_id = 0 ) { |
1637 |
$match = false; |
|
1638 |
||
1639 |
// Ensure the $image_meta is valid. |
|
1640 |
if ( isset( $image_meta['file'] ) && strlen( $image_meta['file'] ) > 4 ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1641 |
// Remove query args in image URI. |
16 | 1642 |
list( $image_location ) = explode( '?', $image_location ); |
1643 |
||
1644 |
// Check if the relative image path from the image meta is at the end of $image_location. |
|
1645 |
if ( strrpos( $image_location, $image_meta['file'] ) === strlen( $image_location ) - strlen( $image_meta['file'] ) ) { |
|
1646 |
$match = true; |
|
1647 |
} else { |
|
1648 |
// Retrieve the uploads sub-directory from the full size image. |
|
1649 |
$dirname = _wp_get_attachment_relative_path( $image_meta['file'] ); |
|
1650 |
||
1651 |
if ( $dirname ) { |
|
1652 |
$dirname = trailingslashit( $dirname ); |
|
1653 |
} |
|
1654 |
||
1655 |
if ( ! empty( $image_meta['original_image'] ) ) { |
|
1656 |
$relative_path = $dirname . $image_meta['original_image']; |
|
1657 |
||
1658 |
if ( strrpos( $image_location, $relative_path ) === strlen( $image_location ) - strlen( $relative_path ) ) { |
|
1659 |
$match = true; |
|
1660 |
} |
|
1661 |
} |
|
1662 |
||
1663 |
if ( ! $match && ! empty( $image_meta['sizes'] ) ) { |
|
1664 |
foreach ( $image_meta['sizes'] as $image_size_data ) { |
|
1665 |
$relative_path = $dirname . $image_size_data['file']; |
|
1666 |
||
1667 |
if ( strrpos( $image_location, $relative_path ) === strlen( $image_location ) - strlen( $relative_path ) ) { |
|
1668 |
$match = true; |
|
1669 |
break; |
|
1670 |
} |
|
1671 |
} |
|
1672 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1673 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1674 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1675 |
|
16 | 1676 |
/** |
18 | 1677 |
* Filters whether an image path or URI matches image meta. |
16 | 1678 |
* |
1679 |
* @since 5.5.0 |
|
1680 |
* |
|
1681 |
* @param bool $match Whether the image relative path from the image meta |
|
1682 |
* matches the end of the URI or path to the image file. |
|
1683 |
* @param string $image_location Full path or URI to the tested image file. |
|
1684 |
* @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. |
|
1685 |
* @param int $attachment_id The image attachment ID or 0 if not supplied. |
|
1686 |
*/ |
|
1687 |
return apply_filters( 'wp_image_file_matches_image_meta', $match, $image_location, $image_meta, $attachment_id ); |
|
1688 |
} |
|
1689 |
||
1690 |
/** |
|
1691 |
* Determines an image's width and height dimensions based on the source file. |
|
1692 |
* |
|
1693 |
* @since 5.5.0 |
|
1694 |
* |
|
1695 |
* @param string $image_src The image source file. |
|
1696 |
* @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. |
|
1697 |
* @param int $attachment_id Optional. The image attachment ID. Default 0. |
|
1698 |
* @return array|false Array with first element being the width and second element being the height, |
|
1699 |
* or false if dimensions cannot be determined. |
|
1700 |
*/ |
|
1701 |
function wp_image_src_get_dimensions( $image_src, $image_meta, $attachment_id = 0 ) { |
|
18 | 1702 |
$dimensions = false; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1703 |
|
16 | 1704 |
// Is it a full size image? |
18 | 1705 |
if ( |
1706 |
isset( $image_meta['file'] ) && |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1707 |
str_contains( $image_src, wp_basename( $image_meta['file'] ) ) |
18 | 1708 |
) { |
1709 |
$dimensions = array( |
|
16 | 1710 |
(int) $image_meta['width'], |
1711 |
(int) $image_meta['height'], |
|
1712 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1713 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1714 |
|
18 | 1715 |
if ( ! $dimensions && ! empty( $image_meta['sizes'] ) ) { |
16 | 1716 |
$src_filename = wp_basename( $image_src ); |
1717 |
||
1718 |
foreach ( $image_meta['sizes'] as $image_size_data ) { |
|
1719 |
if ( $src_filename === $image_size_data['file'] ) { |
|
18 | 1720 |
$dimensions = array( |
16 | 1721 |
(int) $image_size_data['width'], |
1722 |
(int) $image_size_data['height'], |
|
1723 |
); |
|
18 | 1724 |
|
1725 |
break; |
|
16 | 1726 |
} |
1727 |
} |
|
1728 |
} |
|
1729 |
||
18 | 1730 |
/** |
1731 |
* Filters the 'wp_image_src_get_dimensions' value. |
|
1732 |
* |
|
1733 |
* @since 5.7.0 |
|
1734 |
* |
|
1735 |
* @param array|false $dimensions Array with first element being the width |
|
1736 |
* and second element being the height, or |
|
1737 |
* false if dimensions could not be determined. |
|
1738 |
* @param string $image_src The image source file. |
|
1739 |
* @param array $image_meta The image meta data as returned by |
|
1740 |
* 'wp_get_attachment_metadata()'. |
|
1741 |
* @param int $attachment_id The image attachment ID. Default 0. |
|
1742 |
*/ |
|
1743 |
return apply_filters( 'wp_image_src_get_dimensions', $dimensions, $image_src, $image_meta, $attachment_id ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1744 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1745 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1746 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1747 |
* Adds 'srcset' and 'sizes' attributes to an existing 'img' element. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1748 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1749 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1750 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1751 |
* @see wp_calculate_image_srcset() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1752 |
* @see wp_calculate_image_sizes() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1753 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1754 |
* @param string $image An HTML 'img' element to be filtered. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1755 |
* @param array $image_meta The image meta data as returned by 'wp_get_attachment_metadata()'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1756 |
* @param int $attachment_id Image attachment ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1757 |
* @return string Converted 'img' element with 'srcset' and 'sizes' attributes added. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1758 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1759 |
function wp_image_add_srcset_and_sizes( $image, $image_meta, $attachment_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1760 |
// Ensure the image meta exists. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1761 |
if ( empty( $image_meta['sizes'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1762 |
return $image; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1763 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1764 |
|
9 | 1765 |
$image_src = preg_match( '/src="([^"]+)"/', $image, $match_src ) ? $match_src[1] : ''; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1766 |
list( $image_src ) = explode( '?', $image_src ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1767 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1768 |
// Return early if we couldn't get the image source. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1769 |
if ( ! $image_src ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1770 |
return $image; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1771 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1772 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1773 |
// Bail early if an image has been inserted and later edited. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1774 |
if ( preg_match( '/-e[0-9]{13}/', $image_meta['file'], $img_edit_hash ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1775 |
&& ! str_contains( wp_basename( $image_src ), $img_edit_hash[0] ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1776 |
) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1777 |
return $image; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1778 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1779 |
|
9 | 1780 |
$width = preg_match( '/ width="([0-9]+)"/', $image, $match_width ) ? (int) $match_width[1] : 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1781 |
$height = preg_match( '/ height="([0-9]+)"/', $image, $match_height ) ? (int) $match_height[1] : 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1782 |
|
16 | 1783 |
if ( $width && $height ) { |
1784 |
$size_array = array( $width, $height ); |
|
1785 |
} else { |
|
1786 |
$size_array = wp_image_src_get_dimensions( $image_src, $image_meta, $attachment_id ); |
|
1787 |
if ( ! $size_array ) { |
|
1788 |
return $image; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1789 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1790 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1791 |
|
16 | 1792 |
$srcset = wp_calculate_image_srcset( $size_array, $image_src, $image_meta, $attachment_id ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1793 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1794 |
if ( $srcset ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1795 |
// Check if there is already a 'sizes' attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1796 |
$sizes = strpos( $image, ' sizes=' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1797 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1798 |
if ( ! $sizes ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1799 |
$sizes = wp_calculate_image_sizes( $size_array, $image_src, $image_meta, $attachment_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1800 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1801 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1802 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1803 |
if ( $srcset && $sizes ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1804 |
// Format the 'srcset' and 'sizes' string and escape attributes. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1805 |
$attr = sprintf( ' srcset="%s"', esc_attr( $srcset ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1806 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1807 |
if ( is_string( $sizes ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1808 |
$attr .= sprintf( ' sizes="%s"', esc_attr( $sizes ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1809 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1810 |
|
16 | 1811 |
// Add the srcset and sizes attributes to the image markup. |
1812 |
return preg_replace( '/<img ([^>]+?)[\/ ]*>/', '<img $1' . $attr . ' />', $image ); |
|
1813 |
} |
|
1814 |
||
1815 |
return $image; |
|
1816 |
} |
|
1817 |
||
1818 |
/** |
|
18 | 1819 |
* Determines whether to add the `loading` attribute to the specified tag in the specified context. |
16 | 1820 |
* |
1821 |
* @since 5.5.0 |
|
18 | 1822 |
* @since 5.7.0 Now returns `true` by default for `iframe` tags. |
16 | 1823 |
* |
1824 |
* @param string $tag_name The tag name. |
|
18 | 1825 |
* @param string $context Additional context, like the current filter name |
1826 |
* or the function name from where this was called. |
|
16 | 1827 |
* @return bool Whether to add the attribute. |
1828 |
*/ |
|
1829 |
function wp_lazy_loading_enabled( $tag_name, $context ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1830 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1831 |
* By default add to all 'img' and 'iframe' tags. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1832 |
* See https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-loading |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1833 |
* See https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-loading |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1834 |
*/ |
18 | 1835 |
$default = ( 'img' === $tag_name || 'iframe' === $tag_name ); |
16 | 1836 |
|
1837 |
/** |
|
1838 |
* Filters whether to add the `loading` attribute to the specified tag in the specified context. |
|
1839 |
* |
|
1840 |
* @since 5.5.0 |
|
1841 |
* |
|
1842 |
* @param bool $default Default value. |
|
1843 |
* @param string $tag_name The tag name. |
|
18 | 1844 |
* @param string $context Additional context, like the current filter name |
1845 |
* or the function name from where this was called. |
|
16 | 1846 |
*/ |
1847 |
return (bool) apply_filters( 'wp_lazy_loading_enabled', $default, $tag_name, $context ); |
|
1848 |
} |
|
1849 |
||
1850 |
/** |
|
1851 |
* Filters specific tags in post content and modifies their markup. |
|
1852 |
* |
|
1853 |
* Modifies HTML tags in post content to include new browser and HTML technologies |
|
1854 |
* that may not have existed at the time of post creation. These modifications currently |
|
18 | 1855 |
* include adding `srcset`, `sizes`, and `loading` attributes to `img` HTML tags, as well |
1856 |
* as adding `loading` attributes to `iframe` HTML tags. |
|
16 | 1857 |
* Future similar optimizations should be added/expected here. |
1858 |
* |
|
1859 |
* @since 5.5.0 |
|
18 | 1860 |
* @since 5.7.0 Now supports adding `loading` attributes to `iframe` tags. |
16 | 1861 |
* |
1862 |
* @see wp_img_tag_add_width_and_height_attr() |
|
1863 |
* @see wp_img_tag_add_srcset_and_sizes_attr() |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1864 |
* @see wp_img_tag_add_loading_optimization_attrs() |
18 | 1865 |
* @see wp_iframe_tag_add_loading_attr() |
16 | 1866 |
* |
1867 |
* @param string $content The HTML content to be filtered. |
|
1868 |
* @param string $context Optional. Additional context to pass to the filters. |
|
1869 |
* Defaults to `current_filter()` when not set. |
|
1870 |
* @return string Converted content with images modified. |
|
1871 |
*/ |
|
1872 |
function wp_filter_content_tags( $content, $context = null ) { |
|
1873 |
if ( null === $context ) { |
|
1874 |
$context = current_filter(); |
|
1875 |
} |
|
1876 |
||
18 | 1877 |
$add_iframe_loading_attr = wp_lazy_loading_enabled( 'iframe', $context ); |
1878 |
||
1879 |
if ( ! preg_match_all( '/<(img|iframe)\s[^>]+>/', $content, $matches, PREG_SET_ORDER ) ) { |
|
16 | 1880 |
return $content; |
1881 |
} |
|
1882 |
||
1883 |
// List of the unique `img` tags found in $content. |
|
1884 |
$images = array(); |
|
1885 |
||
18 | 1886 |
// List of the unique `iframe` tags found in $content. |
1887 |
$iframes = array(); |
|
1888 |
||
1889 |
foreach ( $matches as $match ) { |
|
1890 |
list( $tag, $tag_name ) = $match; |
|
1891 |
||
1892 |
switch ( $tag_name ) { |
|
1893 |
case 'img': |
|
1894 |
if ( preg_match( '/wp-image-([0-9]+)/i', $tag, $class_id ) ) { |
|
1895 |
$attachment_id = absint( $class_id[1] ); |
|
1896 |
||
1897 |
if ( $attachment_id ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1898 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1899 |
* If exactly the same image tag is used more than once, overwrite it. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1900 |
* All identical tags will be replaced later with 'str_replace()'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1901 |
*/ |
18 | 1902 |
$images[ $tag ] = $attachment_id; |
1903 |
break; |
|
1904 |
} |
|
1905 |
} |
|
1906 |
$images[ $tag ] = 0; |
|
1907 |
break; |
|
1908 |
case 'iframe': |
|
1909 |
$iframes[ $tag ] = 0; |
|
1910 |
break; |
|
16 | 1911 |
} |
1912 |
} |
|
1913 |
||
1914 |
// Reduce the array to unique attachment IDs. |
|
1915 |
$attachment_ids = array_unique( array_filter( array_values( $images ) ) ); |
|
1916 |
||
1917 |
if ( count( $attachment_ids ) > 1 ) { |
|
1918 |
/* |
|
1919 |
* Warm the object cache with post and meta information for all found |
|
1920 |
* images to avoid making individual database calls. |
|
1921 |
*/ |
|
1922 |
_prime_post_caches( $attachment_ids, false, true ); |
|
1923 |
} |
|
1924 |
||
19 | 1925 |
// Iterate through the matches in order of occurrence as it is relevant for whether or not to lazy-load. |
1926 |
foreach ( $matches as $match ) { |
|
1927 |
// Filter an image match. |
|
1928 |
if ( isset( $images[ $match[0] ] ) ) { |
|
1929 |
$filtered_image = $match[0]; |
|
1930 |
$attachment_id = $images[ $match[0] ]; |
|
1931 |
||
1932 |
// Add 'width' and 'height' attributes if applicable. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1933 |
if ( $attachment_id > 0 && ! str_contains( $filtered_image, ' width=' ) && ! str_contains( $filtered_image, ' height=' ) ) { |
19 | 1934 |
$filtered_image = wp_img_tag_add_width_and_height_attr( $filtered_image, $context, $attachment_id ); |
1935 |
} |
|
1936 |
||
1937 |
// Add 'srcset' and 'sizes' attributes if applicable. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1938 |
if ( $attachment_id > 0 && ! str_contains( $filtered_image, ' srcset=' ) ) { |
19 | 1939 |
$filtered_image = wp_img_tag_add_srcset_and_sizes_attr( $filtered_image, $context, $attachment_id ); |
1940 |
} |
|
1941 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1942 |
// Add loading optimization attributes if applicable. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1943 |
$filtered_image = wp_img_tag_add_loading_optimization_attrs( $filtered_image, $context ); |
19 | 1944 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1945 |
// Adds 'auto' to the sizes attribute if applicable. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1946 |
$filtered_image = wp_img_tag_add_auto_sizes( $filtered_image ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1947 |
|
19 | 1948 |
/** |
1949 |
* Filters an img tag within the content for a given context. |
|
1950 |
* |
|
1951 |
* @since 6.0.0 |
|
1952 |
* |
|
1953 |
* @param string $filtered_image Full img tag with attributes that will replace the source img tag. |
|
1954 |
* @param string $context Additional context, like the current filter name or the function name from where this was called. |
|
1955 |
* @param int $attachment_id The image attachment ID. May be 0 in case the image is not an attachment. |
|
1956 |
*/ |
|
1957 |
$filtered_image = apply_filters( 'wp_content_img_tag', $filtered_image, $context, $attachment_id ); |
|
1958 |
||
1959 |
if ( $filtered_image !== $match[0] ) { |
|
1960 |
$content = str_replace( $match[0], $filtered_image, $content ); |
|
1961 |
} |
|
1962 |
||
1963 |
/* |
|
1964 |
* Unset image lookup to not run the same logic again unnecessarily if the same image tag is used more than |
|
1965 |
* once in the same blob of content. |
|
1966 |
*/ |
|
1967 |
unset( $images[ $match[0] ] ); |
|
16 | 1968 |
} |
1969 |
||
19 | 1970 |
// Filter an iframe match. |
1971 |
if ( isset( $iframes[ $match[0] ] ) ) { |
|
1972 |
$filtered_iframe = $match[0]; |
|
1973 |
||
1974 |
// Add 'loading' attribute if applicable. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1975 |
if ( $add_iframe_loading_attr && ! str_contains( $filtered_iframe, ' loading=' ) ) { |
19 | 1976 |
$filtered_iframe = wp_iframe_tag_add_loading_attr( $filtered_iframe, $context ); |
1977 |
} |
|
1978 |
||
1979 |
if ( $filtered_iframe !== $match[0] ) { |
|
1980 |
$content = str_replace( $match[0], $filtered_iframe, $content ); |
|
1981 |
} |
|
1982 |
||
1983 |
/* |
|
1984 |
* Unset iframe lookup to not run the same logic again unnecessarily if the same iframe tag is used more |
|
1985 |
* than once in the same blob of content. |
|
1986 |
*/ |
|
1987 |
unset( $iframes[ $match[0] ] ); |
|
18 | 1988 |
} |
1989 |
} |
|
1990 |
||
16 | 1991 |
return $content; |
1992 |
} |
|
1993 |
||
1994 |
/** |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1995 |
* Adds 'auto' to the sizes attribute to the image, if the image is lazy loaded and does not already include it. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1996 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1997 |
* @since 6.7.0 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1998 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
1999 |
* @param string $image The image tag markup being filtered. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2000 |
* @return string The filtered image tag markup. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2001 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2002 |
function wp_img_tag_add_auto_sizes( string $image ): string { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2003 |
/** |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2004 |
* Filters whether auto-sizes for lazy loaded images is enabled. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2005 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2006 |
* @since 6.7.1 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2007 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2008 |
* @param boolean $enabled Whether auto-sizes for lazy loaded images is enabled. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2009 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2010 |
if ( ! apply_filters( 'wp_img_tag_add_auto_sizes', true ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2011 |
return $image; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2012 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2013 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2014 |
$processor = new WP_HTML_Tag_Processor( $image ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2015 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2016 |
// Bail if there is no IMG tag. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2017 |
if ( ! $processor->next_tag( array( 'tag_name' => 'IMG' ) ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2018 |
return $image; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2019 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2020 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2021 |
// Bail early if the image is not lazy-loaded. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2022 |
$loading = $processor->get_attribute( 'loading' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2023 |
if ( ! is_string( $loading ) || 'lazy' !== strtolower( trim( $loading, " \t\f\r\n" ) ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2024 |
return $image; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2025 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2026 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2027 |
/* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2028 |
* Bail early if the image doesn't have a width attribute. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2029 |
* Per WordPress Core itself, lazy-loaded images should always have a width attribute. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2030 |
* However, it is possible that lazy-loading could be added by a plugin, where we don't have that guarantee. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2031 |
* As such, it still makes sense to ensure presence of a width attribute here in order to use `sizes=auto`. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2032 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2033 |
$width = $processor->get_attribute( 'width' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2034 |
if ( ! is_string( $width ) || '' === $width ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2035 |
return $image; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2036 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2037 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2038 |
$sizes = $processor->get_attribute( 'sizes' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2039 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2040 |
// Bail early if the image is not responsive. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2041 |
if ( ! is_string( $sizes ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2042 |
return $image; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2043 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2044 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2045 |
// Don't add 'auto' to the sizes attribute if it already exists. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2046 |
if ( wp_sizes_attribute_includes_valid_auto( $sizes ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2047 |
return $image; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2048 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2049 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2050 |
$processor->set_attribute( 'sizes', "auto, $sizes" ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2051 |
return $processor->get_updated_html(); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2052 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2053 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2054 |
/** |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2055 |
* Checks whether the given 'sizes' attribute includes the 'auto' keyword as the first item in the list. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2056 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2057 |
* Per the HTML spec, if present it must be the first entry. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2058 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2059 |
* @since 6.7.0 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2060 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2061 |
* @param string $sizes_attr The 'sizes' attribute value. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2062 |
* @return bool True if the 'auto' keyword is present, false otherwise. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2063 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2064 |
function wp_sizes_attribute_includes_valid_auto( string $sizes_attr ): bool { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2065 |
list( $first_size ) = explode( ',', $sizes_attr, 2 ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2066 |
return 'auto' === strtolower( trim( $first_size, " \t\f\r\n" ) ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2067 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2068 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2069 |
/** |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2070 |
* Prints a CSS rule to fix potential visual issues with images using `sizes=auto`. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2071 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2072 |
* This rule overrides the similar rule in the default user agent stylesheet, to avoid images that use e.g. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2073 |
* `width: auto` or `width: fit-content` to appear smaller. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2074 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2075 |
* @since 6.7.1 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2076 |
* @see https://html.spec.whatwg.org/multipage/rendering.html#img-contain-size |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2077 |
* @see https://core.trac.wordpress.org/ticket/62413 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2078 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2079 |
function wp_print_auto_sizes_contain_css_fix() { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2080 |
/** This filter is documented in wp-includes/media.php */ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2081 |
$add_auto_sizes = apply_filters( 'wp_img_tag_add_auto_sizes', true ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2082 |
if ( ! $add_auto_sizes ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2083 |
return; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2084 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2085 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2086 |
?> |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2087 |
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2088 |
<?php |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2089 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2090 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2091 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2092 |
* Adds optimization attributes to an `img` HTML tag. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2093 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2094 |
* @since 6.3.0 |
16 | 2095 |
* |
2096 |
* @param string $image The HTML `img` tag where the attribute should be added. |
|
2097 |
* @param string $context Additional context to pass to the filters. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2098 |
* @return string Converted `img` tag with optimization attributes added. |
16 | 2099 |
*/ |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2100 |
function wp_img_tag_add_loading_optimization_attrs( $image, $context ) { |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2101 |
$src = preg_match( '/ src=["\']?([^"\']*)/i', $image, $matche_src ) ? $matche_src[1] : null; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2102 |
$width = preg_match( '/ width=["\']([0-9]+)["\']/', $image, $match_width ) ? (int) $match_width[1] : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2103 |
$height = preg_match( '/ height=["\']([0-9]+)["\']/', $image, $match_height ) ? (int) $match_height[1] : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2104 |
$loading_val = preg_match( '/ loading=["\']([A-Za-z]+)["\']/', $image, $match_loading ) ? $match_loading[1] : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2105 |
$fetchpriority_val = preg_match( '/ fetchpriority=["\']([A-Za-z]+)["\']/', $image, $match_fetchpriority ) ? $match_fetchpriority[1] : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2106 |
$decoding_val = preg_match( '/ decoding=["\']([A-Za-z]+)["\']/', $image, $match_decoding ) ? $match_decoding[1] : null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2107 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2108 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2109 |
* Get loading optimization attributes to use. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2110 |
* This must occur before the conditional check below so that even images |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2111 |
* that are ineligible for being lazy-loaded are considered. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2112 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2113 |
$optimization_attrs = wp_get_loading_optimization_attributes( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2114 |
'img', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2115 |
array( |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
2116 |
'src' => $src, |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2117 |
'width' => $width, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2118 |
'height' => $height, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2119 |
'loading' => $loading_val, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2120 |
'fetchpriority' => $fetchpriority_val, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2121 |
'decoding' => $decoding_val, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2122 |
), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2123 |
$context |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2124 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2125 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2126 |
// Images should have source for the loading optimization attributes to be added. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2127 |
if ( ! str_contains( $image, ' src="' ) ) { |
18 | 2128 |
return $image; |
2129 |
} |
|
2130 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2131 |
if ( empty( $decoding_val ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2132 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2133 |
* Filters the `decoding` attribute value to add to an image. Default `async`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2134 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2135 |
* Returning a falsey value will omit the attribute. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2136 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2137 |
* @since 6.1.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2138 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2139 |
* @param string|false|null $value The `decoding` attribute value. Returning a falsey value |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2140 |
* will result in the attribute being omitted for the image. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2141 |
* Otherwise, it may be: 'async', 'sync', or 'auto'. Defaults to false. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2142 |
* @param string $image The HTML `img` tag to be filtered. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2143 |
* @param string $context Additional context about how the function was called |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2144 |
* or where the img tag is. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2145 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2146 |
$filtered_decoding_attr = apply_filters( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2147 |
'wp_img_tag_add_decoding_attr', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2148 |
isset( $optimization_attrs['decoding'] ) ? $optimization_attrs['decoding'] : false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2149 |
$image, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2150 |
$context |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2151 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2152 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2153 |
// Validate the values after filtering. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2154 |
if ( isset( $optimization_attrs['decoding'] ) && ! $filtered_decoding_attr ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2155 |
// Unset `decoding` attribute if `$filtered_decoding_attr` is set to `false`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2156 |
unset( $optimization_attrs['decoding'] ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2157 |
} elseif ( in_array( $filtered_decoding_attr, array( 'async', 'sync', 'auto' ), true ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2158 |
$optimization_attrs['decoding'] = $filtered_decoding_attr; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2159 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2160 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2161 |
if ( ! empty( $optimization_attrs['decoding'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2162 |
$image = str_replace( '<img', '<img decoding="' . esc_attr( $optimization_attrs['decoding'] ) . '"', $image ); |
16 | 2163 |
} |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2164 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2165 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2166 |
// Images should have dimension attributes for the 'loading' and 'fetchpriority' attributes to be added. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2167 |
if ( ! str_contains( $image, ' width="' ) || ! str_contains( $image, ' height="' ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2168 |
return $image; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2169 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2170 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2171 |
// Retained for backward compatibility. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2172 |
$loading_attrs_enabled = wp_lazy_loading_enabled( 'img', $context ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2173 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2174 |
if ( empty( $loading_val ) && $loading_attrs_enabled ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2175 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2176 |
* Filters the `loading` attribute value to add to an image. Default `lazy`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2177 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2178 |
* Returning `false` or an empty string will not add the attribute. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2179 |
* Returning `true` will add the default value. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2180 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2181 |
* @since 5.5.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2182 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2183 |
* @param string|bool $value The `loading` attribute value. Returning a falsey value will result in |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2184 |
* the attribute being omitted for the image. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2185 |
* @param string $image The HTML `img` tag to be filtered. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2186 |
* @param string $context Additional context about how the function was called or where the img tag is. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2187 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2188 |
$filtered_loading_attr = apply_filters( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2189 |
'wp_img_tag_add_loading_attr', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2190 |
isset( $optimization_attrs['loading'] ) ? $optimization_attrs['loading'] : false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2191 |
$image, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2192 |
$context |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2193 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2194 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2195 |
// Validate the values after filtering. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2196 |
if ( isset( $optimization_attrs['loading'] ) && ! $filtered_loading_attr ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2197 |
// Unset `loading` attributes if `$filtered_loading_attr` is set to `false`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2198 |
unset( $optimization_attrs['loading'] ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2199 |
} elseif ( in_array( $filtered_loading_attr, array( 'lazy', 'eager' ), true ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2200 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2201 |
* If the filter changed the loading attribute to "lazy" when a fetchpriority attribute |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2202 |
* with value "high" is already present, trigger a warning since those two attribute |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2203 |
* values should be mutually exclusive. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2204 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2205 |
* The same warning is present in `wp_get_loading_optimization_attributes()`, and here it |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2206 |
* is only intended for the specific scenario where the above filtered caused the problem. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2207 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2208 |
if ( isset( $optimization_attrs['fetchpriority'] ) && 'high' === $optimization_attrs['fetchpriority'] && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2209 |
( isset( $optimization_attrs['loading'] ) ? $optimization_attrs['loading'] : false ) !== $filtered_loading_attr && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2210 |
'lazy' === $filtered_loading_attr |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2211 |
) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2212 |
_doing_it_wrong( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2213 |
__FUNCTION__, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2214 |
__( 'An image should not be lazy-loaded and marked as high priority at the same time.' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2215 |
'6.3.0' |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2216 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2217 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2218 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2219 |
// The filtered value will still be respected. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2220 |
$optimization_attrs['loading'] = $filtered_loading_attr; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2221 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2222 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2223 |
if ( ! empty( $optimization_attrs['loading'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2224 |
$image = str_replace( '<img', '<img loading="' . esc_attr( $optimization_attrs['loading'] ) . '"', $image ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2225 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2226 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2227 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2228 |
if ( empty( $fetchpriority_val ) && ! empty( $optimization_attrs['fetchpriority'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2229 |
$image = str_replace( '<img', '<img fetchpriority="' . esc_attr( $optimization_attrs['fetchpriority'] ) . '"', $image ); |
16 | 2230 |
} |
2231 |
||
2232 |
return $image; |
|
2233 |
} |
|
2234 |
||
2235 |
/** |
|
2236 |
* Adds `width` and `height` attributes to an `img` HTML tag. |
|
2237 |
* |
|
2238 |
* @since 5.5.0 |
|
2239 |
* |
|
2240 |
* @param string $image The HTML `img` tag where the attribute should be added. |
|
2241 |
* @param string $context Additional context to pass to the filters. |
|
2242 |
* @param int $attachment_id Image attachment ID. |
|
2243 |
* @return string Converted 'img' element with 'width' and 'height' attributes added. |
|
2244 |
*/ |
|
2245 |
function wp_img_tag_add_width_and_height_attr( $image, $context, $attachment_id ) { |
|
2246 |
$image_src = preg_match( '/src="([^"]+)"/', $image, $match_src ) ? $match_src[1] : ''; |
|
2247 |
list( $image_src ) = explode( '?', $image_src ); |
|
2248 |
||
2249 |
// Return early if we couldn't get the image source. |
|
2250 |
if ( ! $image_src ) { |
|
2251 |
return $image; |
|
2252 |
} |
|
2253 |
||
2254 |
/** |
|
2255 |
* Filters whether to add the missing `width` and `height` HTML attributes to the img tag. Default `true`. |
|
2256 |
* |
|
2257 |
* Returning anything else than `true` will not add the attributes. |
|
2258 |
* |
|
2259 |
* @since 5.5.0 |
|
2260 |
* |
|
2261 |
* @param bool $value The filtered value, defaults to `true`. |
|
2262 |
* @param string $image The HTML `img` tag where the attribute should be added. |
|
2263 |
* @param string $context Additional context about how the function was called or where the img tag is. |
|
2264 |
* @param int $attachment_id The image attachment ID. |
|
2265 |
*/ |
|
2266 |
$add = apply_filters( 'wp_img_tag_add_width_and_height_attr', true, $image, $context, $attachment_id ); |
|
2267 |
||
2268 |
if ( true === $add ) { |
|
2269 |
$image_meta = wp_get_attachment_metadata( $attachment_id ); |
|
2270 |
$size_array = wp_image_src_get_dimensions( $image_src, $image_meta, $attachment_id ); |
|
2271 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2272 |
if ( $size_array && $size_array[0] && $size_array[1] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2273 |
// If the width is enforced through style (e.g. in an inline image), calculate the dimension attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2274 |
$style_width = preg_match( '/style="width:\s*(\d+)px;"/', $image, $match_width ) ? (int) $match_width[1] : 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2275 |
if ( $style_width ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2276 |
$size_array[1] = (int) round( $size_array[1] * $style_width / $size_array[0] ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2277 |
$size_array[0] = $style_width; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2278 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2279 |
|
16 | 2280 |
$hw = trim( image_hwstring( $size_array[0], $size_array[1] ) ); |
2281 |
return str_replace( '<img', "<img {$hw}", $image ); |
|
2282 |
} |
|
2283 |
} |
|
2284 |
||
2285 |
return $image; |
|
2286 |
} |
|
2287 |
||
2288 |
/** |
|
2289 |
* Adds `srcset` and `sizes` attributes to an existing `img` HTML tag. |
|
2290 |
* |
|
2291 |
* @since 5.5.0 |
|
2292 |
* |
|
2293 |
* @param string $image The HTML `img` tag where the attribute should be added. |
|
2294 |
* @param string $context Additional context to pass to the filters. |
|
2295 |
* @param int $attachment_id Image attachment ID. |
|
2296 |
* @return string Converted 'img' element with 'loading' attribute added. |
|
2297 |
*/ |
|
2298 |
function wp_img_tag_add_srcset_and_sizes_attr( $image, $context, $attachment_id ) { |
|
2299 |
/** |
|
2300 |
* Filters whether to add the `srcset` and `sizes` HTML attributes to the img tag. Default `true`. |
|
2301 |
* |
|
2302 |
* Returning anything else than `true` will not add the attributes. |
|
2303 |
* |
|
2304 |
* @since 5.5.0 |
|
2305 |
* |
|
2306 |
* @param bool $value The filtered value, defaults to `true`. |
|
2307 |
* @param string $image The HTML `img` tag where the attribute should be added. |
|
2308 |
* @param string $context Additional context about how the function was called or where the img tag is. |
|
2309 |
* @param int $attachment_id The image attachment ID. |
|
2310 |
*/ |
|
2311 |
$add = apply_filters( 'wp_img_tag_add_srcset_and_sizes_attr', true, $image, $context, $attachment_id ); |
|
2312 |
||
2313 |
if ( true === $add ) { |
|
2314 |
$image_meta = wp_get_attachment_metadata( $attachment_id ); |
|
2315 |
return wp_image_add_srcset_and_sizes( $image, $image_meta, $attachment_id ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2316 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2317 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2318 |
return $image; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2319 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2320 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2321 |
/** |
18 | 2322 |
* Adds `loading` attribute to an `iframe` HTML tag. |
2323 |
* |
|
2324 |
* @since 5.7.0 |
|
2325 |
* |
|
2326 |
* @param string $iframe The HTML `iframe` tag where the attribute should be added. |
|
2327 |
* @param string $context Additional context to pass to the filters. |
|
2328 |
* @return string Converted `iframe` tag with `loading` attribute added. |
|
2329 |
*/ |
|
2330 |
function wp_iframe_tag_add_loading_attr( $iframe, $context ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2331 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2332 |
* Get loading attribute value to use. This must occur before the conditional check below so that even iframes that |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2333 |
* are ineligible for being lazy-loaded are considered. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2334 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2335 |
$optimization_attrs = wp_get_loading_optimization_attributes( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2336 |
'iframe', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2337 |
array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2338 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2339 |
* The concrete values for width and height are not important here for now |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2340 |
* since fetchpriority is not yet supported for iframes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2341 |
* TODO: Use WP_HTML_Tag_Processor to extract actual values once support is |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2342 |
* added. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2343 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2344 |
'width' => str_contains( $iframe, ' width="' ) ? 100 : null, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2345 |
'height' => str_contains( $iframe, ' height="' ) ? 100 : null, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2346 |
// This function is never called when a 'loading' attribute is already present. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2347 |
'loading' => null, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2348 |
), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2349 |
$context |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2350 |
); |
19 | 2351 |
|
18 | 2352 |
// Iframes should have source and dimension attributes for the `loading` attribute to be added. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2353 |
if ( ! str_contains( $iframe, ' src="' ) || ! str_contains( $iframe, ' width="' ) || ! str_contains( $iframe, ' height="' ) ) { |
18 | 2354 |
return $iframe; |
2355 |
} |
|
2356 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2357 |
$value = isset( $optimization_attrs['loading'] ) ? $optimization_attrs['loading'] : false; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2358 |
|
18 | 2359 |
/** |
2360 |
* Filters the `loading` attribute value to add to an iframe. Default `lazy`. |
|
2361 |
* |
|
2362 |
* Returning `false` or an empty string will not add the attribute. |
|
2363 |
* Returning `true` will add the default value. |
|
2364 |
* |
|
2365 |
* @since 5.7.0 |
|
2366 |
* |
|
2367 |
* @param string|bool $value The `loading` attribute value. Returning a falsey value will result in |
|
19 | 2368 |
* the attribute being omitted for the iframe. |
18 | 2369 |
* @param string $iframe The HTML `iframe` tag to be filtered. |
2370 |
* @param string $context Additional context about how the function was called or where the iframe tag is. |
|
2371 |
*/ |
|
19 | 2372 |
$value = apply_filters( 'wp_iframe_tag_add_loading_attr', $value, $iframe, $context ); |
18 | 2373 |
|
2374 |
if ( $value ) { |
|
2375 |
if ( ! in_array( $value, array( 'lazy', 'eager' ), true ) ) { |
|
2376 |
$value = 'lazy'; |
|
2377 |
} |
|
2378 |
||
2379 |
return str_replace( '<iframe', '<iframe loading="' . esc_attr( $value ) . '"', $iframe ); |
|
2380 |
} |
|
2381 |
||
2382 |
return $iframe; |
|
2383 |
} |
|
2384 |
||
2385 |
/** |
|
5 | 2386 |
* Adds a 'wp-post-image' class to post thumbnails. Internal use only. |
2387 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2388 |
* Uses the {@see 'begin_fetch_post_thumbnail_html'} and {@see 'end_fetch_post_thumbnail_html'} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2389 |
* action hooks to dynamically add/remove itself so as to only filter post thumbnails. |
0 | 2390 |
* |
5 | 2391 |
* @ignore |
0 | 2392 |
* @since 2.9.0 |
5 | 2393 |
* |
16 | 2394 |
* @param string[] $attr Array of thumbnail attributes including src, class, alt, title, keyed by attribute name. |
2395 |
* @return string[] Modified array of attributes including the new 'wp-post-image' class. |
|
0 | 2396 |
*/ |
2397 |
function _wp_post_thumbnail_class_filter( $attr ) { |
|
2398 |
$attr['class'] .= ' wp-post-image'; |
|
2399 |
return $attr; |
|
2400 |
} |
|
2401 |
||
2402 |
/** |
|
5 | 2403 |
* Adds '_wp_post_thumbnail_class_filter' callback to the 'wp_get_attachment_image_attributes' |
2404 |
* filter hook. Internal use only. |
|
0 | 2405 |
* |
5 | 2406 |
* @ignore |
0 | 2407 |
* @since 2.9.0 |
5 | 2408 |
* |
16 | 2409 |
* @param string[] $attr Array of thumbnail attributes including src, class, alt, title, keyed by attribute name. |
0 | 2410 |
*/ |
2411 |
function _wp_post_thumbnail_class_filter_add( $attr ) { |
|
2412 |
add_filter( 'wp_get_attachment_image_attributes', '_wp_post_thumbnail_class_filter' ); |
|
2413 |
} |
|
2414 |
||
2415 |
/** |
|
5 | 2416 |
* Removes the '_wp_post_thumbnail_class_filter' callback from the 'wp_get_attachment_image_attributes' |
2417 |
* filter hook. Internal use only. |
|
0 | 2418 |
* |
5 | 2419 |
* @ignore |
0 | 2420 |
* @since 2.9.0 |
5 | 2421 |
* |
16 | 2422 |
* @param string[] $attr Array of thumbnail attributes including src, class, alt, title, keyed by attribute name. |
0 | 2423 |
*/ |
2424 |
function _wp_post_thumbnail_class_filter_remove( $attr ) { |
|
2425 |
remove_filter( 'wp_get_attachment_image_attributes', '_wp_post_thumbnail_class_filter' ); |
|
2426 |
} |
|
2427 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2428 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2429 |
* Overrides the context used in {@see wp_get_attachment_image()}. Internal use only. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2430 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2431 |
* Uses the {@see 'begin_fetch_post_thumbnail_html'} and {@see 'end_fetch_post_thumbnail_html'} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2432 |
* action hooks to dynamically add/remove itself so as to only filter post thumbnails. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2433 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2434 |
* @ignore |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2435 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2436 |
* @access private |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2437 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2438 |
* @param string $context The context for rendering an attachment image. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2439 |
* @return string Modified context set to 'the_post_thumbnail'. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2440 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2441 |
function _wp_post_thumbnail_context_filter( $context ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2442 |
return 'the_post_thumbnail'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2443 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2444 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2445 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2446 |
* Adds the '_wp_post_thumbnail_context_filter' callback to the 'wp_get_attachment_image_context' |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2447 |
* filter hook. Internal use only. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2448 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2449 |
* @ignore |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2450 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2451 |
* @access private |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2452 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2453 |
function _wp_post_thumbnail_context_filter_add() { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2454 |
add_filter( 'wp_get_attachment_image_context', '_wp_post_thumbnail_context_filter' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2455 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2456 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2457 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2458 |
* Removes the '_wp_post_thumbnail_context_filter' callback from the 'wp_get_attachment_image_context' |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2459 |
* filter hook. Internal use only. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2460 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2461 |
* @ignore |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2462 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2463 |
* @access private |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2464 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2465 |
function _wp_post_thumbnail_context_filter_remove() { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2466 |
remove_filter( 'wp_get_attachment_image_context', '_wp_post_thumbnail_context_filter' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2467 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2468 |
|
9 | 2469 |
add_shortcode( 'wp_caption', 'img_caption_shortcode' ); |
2470 |
add_shortcode( 'caption', 'img_caption_shortcode' ); |
|
0 | 2471 |
|
2472 |
/** |
|
5 | 2473 |
* Builds the Caption shortcode output. |
0 | 2474 |
* |
2475 |
* Allows a plugin to replace the content that would otherwise be returned. The |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2476 |
* filter is {@see 'img_caption_shortcode'} and passes an empty string, the attr |
0 | 2477 |
* parameter and the content parameter values. |
2478 |
* |
|
9 | 2479 |
* The supported attributes for the shortcode are 'id', 'caption_id', 'align', |
2480 |
* 'width', 'caption', and 'class'. |
|
0 | 2481 |
* |
2482 |
* @since 2.6.0 |
|
9 | 2483 |
* @since 3.9.0 The `class` attribute was added. |
2484 |
* @since 5.1.0 The `caption_id` attribute was added. |
|
19 | 2485 |
* @since 5.9.0 The `$content` parameter default value changed from `null` to `''`. |
0 | 2486 |
* |
5 | 2487 |
* @param array $attr { |
2488 |
* Attributes of the caption shortcode. |
|
2489 |
* |
|
9 | 2490 |
* @type string $id ID of the image and caption container element, i.e. `<figure>` or `<div>`. |
2491 |
* @type string $caption_id ID of the caption element, i.e. `<figcaption>` or `<p>`. |
|
2492 |
* @type string $align Class name that aligns the caption. Default 'alignnone'. Accepts 'alignleft', |
|
2493 |
* 'aligncenter', alignright', 'alignnone'. |
|
2494 |
* @type int $width The width of the caption, in pixels. |
|
2495 |
* @type string $caption The caption text. |
|
2496 |
* @type string $class Additional class name(s) added to the caption container. |
|
5 | 2497 |
* } |
19 | 2498 |
* @param string $content Optional. Shortcode content. Default empty string. |
5 | 2499 |
* @return string HTML content to display the caption. |
0 | 2500 |
*/ |
19 | 2501 |
function img_caption_shortcode( $attr, $content = '' ) { |
0 | 2502 |
// New-style shortcode with the caption inside the shortcode with the link and image tags. |
2503 |
if ( ! isset( $attr['caption'] ) ) { |
|
2504 |
if ( preg_match( '#((?:<a [^>]+>\s*)?<img [^>]+>(?:\s*</a>)?)(.*)#is', $content, $matches ) ) { |
|
9 | 2505 |
$content = $matches[1]; |
0 | 2506 |
$attr['caption'] = trim( $matches[2] ); |
2507 |
} |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2508 |
} elseif ( str_contains( $attr['caption'], '<' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2509 |
$attr['caption'] = wp_kses( $attr['caption'], 'post' ); |
0 | 2510 |
} |
2511 |
||
5 | 2512 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2513 |
* Filters the default caption shortcode output. |
5 | 2514 |
* |
2515 |
* If the filtered output isn't empty, it will be used instead of generating |
|
2516 |
* the default caption template. |
|
2517 |
* |
|
2518 |
* @since 2.6.0 |
|
2519 |
* |
|
2520 |
* @see img_caption_shortcode() |
|
2521 |
* |
|
2522 |
* @param string $output The caption output. Default empty. |
|
2523 |
* @param array $attr Attributes of the caption shortcode. |
|
2524 |
* @param string $content The image element, possibly wrapped in a hyperlink. |
|
2525 |
*/ |
|
2526 |
$output = apply_filters( 'img_caption_shortcode', '', $attr, $content ); |
|
16 | 2527 |
|
2528 |
if ( ! empty( $output ) ) { |
|
0 | 2529 |
return $output; |
9 | 2530 |
} |
2531 |
||
2532 |
$atts = shortcode_atts( |
|
2533 |
array( |
|
2534 |
'id' => '', |
|
2535 |
'caption_id' => '', |
|
2536 |
'align' => 'alignnone', |
|
2537 |
'width' => '', |
|
2538 |
'caption' => '', |
|
2539 |
'class' => '', |
|
2540 |
), |
|
2541 |
$attr, |
|
2542 |
'caption' |
|
2543 |
); |
|
0 | 2544 |
|
2545 |
$atts['width'] = (int) $atts['width']; |
|
16 | 2546 |
|
9 | 2547 |
if ( $atts['width'] < 1 || empty( $atts['caption'] ) ) { |
0 | 2548 |
return $content; |
9 | 2549 |
} |
2550 |
||
16 | 2551 |
$id = ''; |
2552 |
$caption_id = ''; |
|
2553 |
$describedby = ''; |
|
9 | 2554 |
|
2555 |
if ( $atts['id'] ) { |
|
2556 |
$atts['id'] = sanitize_html_class( $atts['id'] ); |
|
2557 |
$id = 'id="' . esc_attr( $atts['id'] ) . '" '; |
|
2558 |
} |
|
2559 |
||
2560 |
if ( $atts['caption_id'] ) { |
|
2561 |
$atts['caption_id'] = sanitize_html_class( $atts['caption_id'] ); |
|
2562 |
} elseif ( $atts['id'] ) { |
|
2563 |
$atts['caption_id'] = 'caption-' . str_replace( '_', '-', $atts['id'] ); |
|
2564 |
} |
|
2565 |
||
2566 |
if ( $atts['caption_id'] ) { |
|
2567 |
$caption_id = 'id="' . esc_attr( $atts['caption_id'] ) . '" '; |
|
2568 |
$describedby = 'aria-describedby="' . esc_attr( $atts['caption_id'] ) . '" '; |
|
2569 |
} |
|
0 | 2570 |
|
5 | 2571 |
$class = trim( 'wp-caption ' . $atts['align'] . ' ' . $atts['class'] ); |
2572 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2573 |
$html5 = current_theme_supports( 'html5', 'caption' ); |
16 | 2574 |
// HTML5 captions never added the extra 10px to the image width. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2575 |
$width = $html5 ? $atts['width'] : ( 10 + $atts['width'] ); |
0 | 2576 |
|
2577 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2578 |
* Filters the width of an image's caption. |
0 | 2579 |
* |
2580 |
* By default, the caption is 10 pixels greater than the width of the image, |
|
2581 |
* to prevent post content from running up against a floated image. |
|
2582 |
* |
|
2583 |
* @since 3.7.0 |
|
2584 |
* |
|
5 | 2585 |
* @see img_caption_shortcode() |
0 | 2586 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2587 |
* @param int $width Width of the caption in pixels. To remove this inline style, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2588 |
* return zero. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2589 |
* @param array $atts Attributes of the caption shortcode. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2590 |
* @param string $content The image element, possibly wrapped in a hyperlink. |
0 | 2591 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2592 |
$caption_width = apply_filters( 'img_caption_shortcode_width', $width, $atts, $content ); |
0 | 2593 |
|
2594 |
$style = ''; |
|
16 | 2595 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2596 |
if ( $caption_width ) { |
0 | 2597 |
$style = 'style="width: ' . (int) $caption_width . 'px" '; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2598 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2599 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2600 |
if ( $html5 ) { |
9 | 2601 |
$html = sprintf( |
2602 |
'<figure %s%s%sclass="%s">%s%s</figure>', |
|
2603 |
$id, |
|
2604 |
$describedby, |
|
2605 |
$style, |
|
2606 |
esc_attr( $class ), |
|
2607 |
do_shortcode( $content ), |
|
2608 |
sprintf( |
|
2609 |
'<figcaption %sclass="wp-caption-text">%s</figcaption>', |
|
2610 |
$caption_id, |
|
2611 |
$atts['caption'] |
|
2612 |
) |
|
2613 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2614 |
} else { |
9 | 2615 |
$html = sprintf( |
2616 |
'<div %s%sclass="%s">%s%s</div>', |
|
2617 |
$id, |
|
2618 |
$style, |
|
2619 |
esc_attr( $class ), |
|
2620 |
str_replace( '<img ', '<img ' . $describedby, do_shortcode( $content ) ), |
|
2621 |
sprintf( |
|
2622 |
'<p %sclass="wp-caption-text">%s</p>', |
|
2623 |
$caption_id, |
|
2624 |
$atts['caption'] |
|
2625 |
) |
|
2626 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2627 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2628 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2629 |
return $html; |
0 | 2630 |
} |
2631 |
||
9 | 2632 |
add_shortcode( 'gallery', 'gallery_shortcode' ); |
0 | 2633 |
|
2634 |
/** |
|
5 | 2635 |
* Builds the Gallery shortcode output. |
0 | 2636 |
* |
2637 |
* This implements the functionality of the Gallery Shortcode for displaying |
|
2638 |
* WordPress images on a post. |
|
2639 |
* |
|
2640 |
* @since 2.5.0 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2641 |
* @since 2.8.0 Added the `$attr` parameter to set the shortcode output. New attributes included |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2642 |
* such as `size`, `itemtag`, `icontag`, `captiontag`, and columns. Changed markup from |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2643 |
* `div` tags to `dl`, `dt` and `dd` tags. Support more than one gallery on the |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2644 |
* same page. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2645 |
* @since 2.9.0 Added support for `include` and `exclude` to shortcode. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2646 |
* @since 3.5.0 Use get_post() instead of global `$post`. Handle mapping of `ids` to `include` |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2647 |
* and `orderby`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2648 |
* @since 3.6.0 Added validation for tags used in gallery shortcode. Add orientation information to items. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2649 |
* @since 3.7.0 Introduced the `link` attribute. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2650 |
* @since 3.9.0 `html5` gallery support, accepting 'itemtag', 'icontag', and 'captiontag' attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2651 |
* @since 4.0.0 Removed use of `extract()`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2652 |
* @since 4.1.0 Added attribute to `wp_get_attachment_link()` to output `aria-describedby`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2653 |
* @since 4.2.0 Passed the shortcode instance ID to `post_gallery` and `post_playlist` filters. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2654 |
* @since 4.6.0 Standardized filter docs to match documentation standards for PHP. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2655 |
* @since 5.1.0 Code cleanup for WPCS 1.0.0 coding standards. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2656 |
* @since 5.3.0 Saved progress of intermediate image creation after upload. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2657 |
* @since 5.5.0 Ensured that galleries can be output as a list of links in feeds. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2658 |
* @since 5.6.0 Replaced order-style PHP type conversion functions with typecasts. Fix logic for |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2659 |
* an array of image dimensions. |
0 | 2660 |
* |
5 | 2661 |
* @param array $attr { |
2662 |
* Attributes of the gallery shortcode. |
|
2663 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2664 |
* @type string $order Order of the images in the gallery. Default 'ASC'. Accepts 'ASC', 'DESC'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2665 |
* @type string $orderby The field to use when ordering the images. Default 'menu_order ID'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2666 |
* Accepts any valid SQL ORDERBY statement. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2667 |
* @type int $id Post ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2668 |
* @type string $itemtag HTML tag to use for each image in the gallery. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2669 |
* Default 'dl', or 'figure' when the theme registers HTML5 gallery support. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2670 |
* @type string $icontag HTML tag to use for each image's icon. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2671 |
* Default 'dt', or 'div' when the theme registers HTML5 gallery support. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2672 |
* @type string $captiontag HTML tag to use for each image's caption. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2673 |
* Default 'dd', or 'figcaption' when the theme registers HTML5 gallery support. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2674 |
* @type int $columns Number of columns of images to display. Default 3. |
18 | 2675 |
* @type string|int[] $size Size of the images to display. Accepts any registered image size name, or an array |
2676 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2677 |
* @type string $ids A comma-separated list of IDs of attachments to display. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2678 |
* @type string $include A comma-separated list of IDs of attachments to include. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2679 |
* @type string $exclude A comma-separated list of IDs of attachments to exclude. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2680 |
* @type string $link What to link each image to. Default empty (links to the attachment page). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2681 |
* Accepts 'file', 'none'. |
5 | 2682 |
* } |
0 | 2683 |
* @return string HTML content to display gallery. |
2684 |
*/ |
|
5 | 2685 |
function gallery_shortcode( $attr ) { |
0 | 2686 |
$post = get_post(); |
2687 |
||
2688 |
static $instance = 0; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2689 |
++$instance; |
0 | 2690 |
|
2691 |
if ( ! empty( $attr['ids'] ) ) { |
|
2692 |
// 'ids' is explicitly ordered, unless you specify otherwise. |
|
5 | 2693 |
if ( empty( $attr['orderby'] ) ) { |
0 | 2694 |
$attr['orderby'] = 'post__in'; |
5 | 2695 |
} |
0 | 2696 |
$attr['include'] = $attr['ids']; |
2697 |
} |
|
2698 |
||
5 | 2699 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2700 |
* Filters the default gallery shortcode output. |
5 | 2701 |
* |
2702 |
* If the filtered output isn't empty, it will be used instead of generating |
|
2703 |
* the default gallery template. |
|
2704 |
* |
|
2705 |
* @since 2.5.0 |
|
2706 |
* @since 4.2.0 The `$instance` parameter was added. |
|
2707 |
* |
|
2708 |
* @see gallery_shortcode() |
|
2709 |
* |
|
2710 |
* @param string $output The gallery output. Default empty. |
|
2711 |
* @param array $attr Attributes of the gallery shortcode. |
|
2712 |
* @param int $instance Unique numeric ID of this gallery shortcode instance. |
|
2713 |
*/ |
|
2714 |
$output = apply_filters( 'post_gallery', '', $attr, $instance ); |
|
16 | 2715 |
|
2716 |
if ( ! empty( $output ) ) { |
|
0 | 2717 |
return $output; |
2718 |
} |
|
2719 |
||
5 | 2720 |
$html5 = current_theme_supports( 'html5', 'gallery' ); |
9 | 2721 |
$atts = shortcode_atts( |
2722 |
array( |
|
2723 |
'order' => 'ASC', |
|
2724 |
'orderby' => 'menu_order ID', |
|
2725 |
'id' => $post ? $post->ID : 0, |
|
2726 |
'itemtag' => $html5 ? 'figure' : 'dl', |
|
2727 |
'icontag' => $html5 ? 'div' : 'dt', |
|
2728 |
'captiontag' => $html5 ? 'figcaption' : 'dd', |
|
2729 |
'columns' => 3, |
|
2730 |
'size' => 'thumbnail', |
|
2731 |
'include' => '', |
|
2732 |
'exclude' => '', |
|
2733 |
'link' => '', |
|
2734 |
), |
|
2735 |
$attr, |
|
2736 |
'gallery' |
|
2737 |
); |
|
5 | 2738 |
|
18 | 2739 |
$id = (int) $atts['id']; |
5 | 2740 |
|
2741 |
if ( ! empty( $atts['include'] ) ) { |
|
9 | 2742 |
$_attachments = get_posts( |
2743 |
array( |
|
2744 |
'include' => $atts['include'], |
|
2745 |
'post_status' => 'inherit', |
|
2746 |
'post_type' => 'attachment', |
|
2747 |
'post_mime_type' => 'image', |
|
2748 |
'order' => $atts['order'], |
|
2749 |
'orderby' => $atts['orderby'], |
|
2750 |
) |
|
2751 |
); |
|
0 | 2752 |
|
2753 |
$attachments = array(); |
|
2754 |
foreach ( $_attachments as $key => $val ) { |
|
9 | 2755 |
$attachments[ $val->ID ] = $_attachments[ $key ]; |
0 | 2756 |
} |
5 | 2757 |
} elseif ( ! empty( $atts['exclude'] ) ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2758 |
$post_parent_id = $id; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2759 |
$attachments = get_children( |
9 | 2760 |
array( |
2761 |
'post_parent' => $id, |
|
2762 |
'exclude' => $atts['exclude'], |
|
2763 |
'post_status' => 'inherit', |
|
2764 |
'post_type' => 'attachment', |
|
2765 |
'post_mime_type' => 'image', |
|
2766 |
'order' => $atts['order'], |
|
2767 |
'orderby' => $atts['orderby'], |
|
2768 |
) |
|
2769 |
); |
|
0 | 2770 |
} else { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2771 |
$post_parent_id = $id; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2772 |
$attachments = get_children( |
9 | 2773 |
array( |
2774 |
'post_parent' => $id, |
|
2775 |
'post_status' => 'inherit', |
|
2776 |
'post_type' => 'attachment', |
|
2777 |
'post_mime_type' => 'image', |
|
2778 |
'order' => $atts['order'], |
|
2779 |
'orderby' => $atts['orderby'], |
|
2780 |
) |
|
2781 |
); |
|
0 | 2782 |
} |
2783 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2784 |
if ( ! empty( $post_parent_id ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2785 |
$post_parent = get_post( $post_parent_id ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2786 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2787 |
// Terminate the shortcode execution if the user cannot read the post or it is password-protected. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2788 |
if ( ! is_post_publicly_viewable( $post_parent->ID ) && ! current_user_can( 'read_post', $post_parent->ID ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2789 |
|| post_password_required( $post_parent ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2790 |
) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2791 |
return ''; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2792 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2793 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2794 |
|
5 | 2795 |
if ( empty( $attachments ) ) { |
0 | 2796 |
return ''; |
5 | 2797 |
} |
0 | 2798 |
|
2799 |
if ( is_feed() ) { |
|
2800 |
$output = "\n"; |
|
5 | 2801 |
foreach ( $attachments as $att_id => $attachment ) { |
16 | 2802 |
if ( ! empty( $atts['link'] ) ) { |
2803 |
if ( 'none' === $atts['link'] ) { |
|
2804 |
$output .= wp_get_attachment_image( $att_id, $atts['size'], false, $attr ); |
|
2805 |
} else { |
|
2806 |
$output .= wp_get_attachment_link( $att_id, $atts['size'], false ); |
|
2807 |
} |
|
2808 |
} else { |
|
2809 |
$output .= wp_get_attachment_link( $att_id, $atts['size'], true ); |
|
2810 |
} |
|
2811 |
$output .= "\n"; |
|
5 | 2812 |
} |
0 | 2813 |
return $output; |
2814 |
} |
|
2815 |
||
9 | 2816 |
$itemtag = tag_escape( $atts['itemtag'] ); |
5 | 2817 |
$captiontag = tag_escape( $atts['captiontag'] ); |
9 | 2818 |
$icontag = tag_escape( $atts['icontag'] ); |
0 | 2819 |
$valid_tags = wp_kses_allowed_html( 'post' ); |
5 | 2820 |
if ( ! isset( $valid_tags[ $itemtag ] ) ) { |
0 | 2821 |
$itemtag = 'dl'; |
5 | 2822 |
} |
2823 |
if ( ! isset( $valid_tags[ $captiontag ] ) ) { |
|
0 | 2824 |
$captiontag = 'dd'; |
5 | 2825 |
} |
2826 |
if ( ! isset( $valid_tags[ $icontag ] ) ) { |
|
0 | 2827 |
$icontag = 'dt'; |
5 | 2828 |
} |
2829 |
||
18 | 2830 |
$columns = (int) $atts['columns']; |
9 | 2831 |
$itemwidth = $columns > 0 ? floor( 100 / $columns ) : 100; |
2832 |
$float = is_rtl() ? 'right' : 'left'; |
|
0 | 2833 |
|
2834 |
$selector = "gallery-{$instance}"; |
|
2835 |
||
5 | 2836 |
$gallery_style = ''; |
2837 |
||
2838 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2839 |
* Filters whether to print default gallery styles. |
5 | 2840 |
* |
2841 |
* @since 3.1.0 |
|
2842 |
* |
|
2843 |
* @param bool $print Whether to print default gallery styles. |
|
2844 |
* Defaults to false if the theme supports HTML5 galleries. |
|
2845 |
* Otherwise, defaults to true. |
|
2846 |
*/ |
|
2847 |
if ( apply_filters( 'use_default_gallery_style', ! $html5 ) ) { |
|
16 | 2848 |
$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"'; |
2849 |
||
0 | 2850 |
$gallery_style = " |
16 | 2851 |
<style{$type_attr}> |
0 | 2852 |
#{$selector} { |
2853 |
margin: auto; |
|
2854 |
} |
|
2855 |
#{$selector} .gallery-item { |
|
2856 |
float: {$float}; |
|
2857 |
margin-top: 10px; |
|
2858 |
text-align: center; |
|
2859 |
width: {$itemwidth}%; |
|
2860 |
} |
|
2861 |
#{$selector} img { |
|
2862 |
border: 2px solid #cfcfcf; |
|
2863 |
} |
|
2864 |
#{$selector} .gallery-caption { |
|
2865 |
margin-left: 0; |
|
2866 |
} |
|
2867 |
/* see gallery_shortcode() in wp-includes/media.php */ |
|
5 | 2868 |
</style>\n\t\t"; |
2869 |
} |
|
2870 |
||
18 | 2871 |
$size_class = sanitize_html_class( is_array( $atts['size'] ) ? implode( 'x', $atts['size'] ) : $atts['size'] ); |
0 | 2872 |
$gallery_div = "<div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'>"; |
5 | 2873 |
|
2874 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2875 |
* Filters the default gallery shortcode CSS styles. |
5 | 2876 |
* |
2877 |
* @since 2.5.0 |
|
2878 |
* |
|
2879 |
* @param string $gallery_style Default CSS styles and opening HTML div container |
|
2880 |
* for the gallery shortcode output. |
|
2881 |
*/ |
|
2882 |
$output = apply_filters( 'gallery_style', $gallery_style . $gallery_div ); |
|
0 | 2883 |
|
2884 |
$i = 0; |
|
16 | 2885 |
|
0 | 2886 |
foreach ( $attachments as $id => $attachment ) { |
5 | 2887 |
|
2888 |
$attr = ( trim( $attachment->post_excerpt ) ) ? array( 'aria-describedby' => "$selector-$id" ) : ''; |
|
16 | 2889 |
|
5 | 2890 |
if ( ! empty( $atts['link'] ) && 'file' === $atts['link'] ) { |
2891 |
$image_output = wp_get_attachment_link( $id, $atts['size'], false, false, false, $attr ); |
|
2892 |
} elseif ( ! empty( $atts['link'] ) && 'none' === $atts['link'] ) { |
|
2893 |
$image_output = wp_get_attachment_image( $id, $atts['size'], false, $attr ); |
|
2894 |
} else { |
|
2895 |
$image_output = wp_get_attachment_link( $id, $atts['size'], true, false, false, $attr ); |
|
2896 |
} |
|
16 | 2897 |
|
9 | 2898 |
$image_meta = wp_get_attachment_metadata( $id ); |
0 | 2899 |
|
2900 |
$orientation = ''; |
|
16 | 2901 |
|
5 | 2902 |
if ( isset( $image_meta['height'], $image_meta['width'] ) ) { |
0 | 2903 |
$orientation = ( $image_meta['height'] > $image_meta['width'] ) ? 'portrait' : 'landscape'; |
5 | 2904 |
} |
16 | 2905 |
|
0 | 2906 |
$output .= "<{$itemtag} class='gallery-item'>"; |
2907 |
$output .= " |
|
2908 |
<{$icontag} class='gallery-icon {$orientation}'> |
|
2909 |
$image_output |
|
2910 |
</{$icontag}>"; |
|
16 | 2911 |
|
9 | 2912 |
if ( $captiontag && trim( $attachment->post_excerpt ) ) { |
0 | 2913 |
$output .= " |
5 | 2914 |
<{$captiontag} class='wp-caption-text gallery-caption' id='$selector-$id'> |
9 | 2915 |
" . wptexturize( $attachment->post_excerpt ) . " |
0 | 2916 |
</{$captiontag}>"; |
2917 |
} |
|
16 | 2918 |
|
0 | 2919 |
$output .= "</{$itemtag}>"; |
16 | 2920 |
|
2921 |
if ( ! $html5 && $columns > 0 && 0 === ++$i % $columns ) { |
|
0 | 2922 |
$output .= '<br style="clear: both" />'; |
5 | 2923 |
} |
2924 |
} |
|
2925 |
||
16 | 2926 |
if ( ! $html5 && $columns > 0 && 0 !== $i % $columns ) { |
5 | 2927 |
$output .= " |
2928 |
<br style='clear: both' />"; |
|
0 | 2929 |
} |
2930 |
||
2931 |
$output .= " |
|
2932 |
</div>\n"; |
|
2933 |
||
2934 |
return $output; |
|
2935 |
} |
|
2936 |
||
2937 |
/** |
|
5 | 2938 |
* Outputs the templates used by playlists. |
2939 |
* |
|
2940 |
* @since 3.9.0 |
|
2941 |
*/ |
|
2942 |
function wp_underscore_playlist_templates() { |
|
9 | 2943 |
?> |
5 | 2944 |
<script type="text/html" id="tmpl-wp-playlist-current-item"> |
18 | 2945 |
<# if ( data.thumb && data.thumb.src ) { #> |
2946 |
<img src="{{ data.thumb.src }}" alt="" /> |
|
5 | 2947 |
<# } #> |
2948 |
<div class="wp-playlist-caption"> |
|
9 | 2949 |
<span class="wp-playlist-item-meta wp-playlist-item-title"> |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2950 |
<# if ( data.meta.album || data.meta.artist ) { #> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2951 |
<?php |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2952 |
/* translators: %s: Playlist item title. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2953 |
printf( _x( '“%s”', 'playlist item title' ), '{{ data.title }}' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2954 |
?> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2955 |
<# } else { #> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2956 |
{{ data.title }} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2957 |
<# } #> |
9 | 2958 |
</span> |
5 | 2959 |
<# if ( data.meta.album ) { #><span class="wp-playlist-item-meta wp-playlist-item-album">{{ data.meta.album }}</span><# } #> |
2960 |
<# if ( data.meta.artist ) { #><span class="wp-playlist-item-meta wp-playlist-item-artist">{{ data.meta.artist }}</span><# } #> |
|
2961 |
</div> |
|
2962 |
</script> |
|
2963 |
<script type="text/html" id="tmpl-wp-playlist-item"> |
|
2964 |
<div class="wp-playlist-item"> |
|
2965 |
<a class="wp-playlist-caption" href="{{ data.src }}"> |
|
2966 |
{{ data.index ? ( data.index + '. ' ) : '' }} |
|
2967 |
<# if ( data.caption ) { #> |
|
2968 |
{{ data.caption }} |
|
2969 |
<# } else { #> |
|
2970 |
<# if ( data.artists && data.meta.artist ) { #> |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2971 |
<span class="wp-playlist-item-title"> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2972 |
<?php |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2973 |
/* translators: %s: Playlist item title. */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2974 |
printf( _x( '“%s”', 'playlist item title' ), '{{{ data.title }}}' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2975 |
?> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2976 |
</span> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2977 |
<span class="wp-playlist-item-artist"> — {{ data.meta.artist }}</span> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2978 |
<# } else { #> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2979 |
<span class="wp-playlist-item-title">{{{ data.title }}}</span> |
5 | 2980 |
<# } #> |
2981 |
<# } #> |
|
2982 |
</a> |
|
2983 |
<# if ( data.meta.length_formatted ) { #> |
|
2984 |
<div class="wp-playlist-item-length">{{ data.meta.length_formatted }}</div> |
|
2985 |
<# } #> |
|
2986 |
</div> |
|
2987 |
</script> |
|
9 | 2988 |
<?php |
5 | 2989 |
} |
2990 |
||
2991 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
2992 |
* Outputs and enqueues default scripts and styles for playlists. |
5 | 2993 |
* |
2994 |
* @since 3.9.0 |
|
2995 |
* |
|
2996 |
* @param string $type Type of playlist. Accepts 'audio' or 'video'. |
|
2997 |
*/ |
|
2998 |
function wp_playlist_scripts( $type ) { |
|
2999 |
wp_enqueue_style( 'wp-mediaelement' ); |
|
3000 |
wp_enqueue_script( 'wp-playlist' ); |
|
9 | 3001 |
?> |
3002 |
<!--[if lt IE 9]><script>document.createElement('<?php echo esc_js( $type ); ?>');</script><![endif]--> |
|
3003 |
<?php |
|
5 | 3004 |
add_action( 'wp_footer', 'wp_underscore_playlist_templates', 0 ); |
3005 |
add_action( 'admin_footer', 'wp_underscore_playlist_templates', 0 ); |
|
3006 |
} |
|
3007 |
||
3008 |
/** |
|
3009 |
* Builds the Playlist shortcode output. |
|
3010 |
* |
|
3011 |
* This implements the functionality of the playlist shortcode for displaying |
|
3012 |
* a collection of WordPress audio or video files in a post. |
|
3013 |
* |
|
3014 |
* @since 3.9.0 |
|
3015 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3016 |
* @global int $content_width |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3017 |
* |
5 | 3018 |
* @param array $attr { |
3019 |
* Array of default playlist attributes. |
|
3020 |
* |
|
3021 |
* @type string $type Type of playlist to display. Accepts 'audio' or 'video'. Default 'audio'. |
|
3022 |
* @type string $order Designates ascending or descending order of items in the playlist. |
|
3023 |
* Accepts 'ASC', 'DESC'. Default 'ASC'. |
|
3024 |
* @type string $orderby Any column, or columns, to sort the playlist. If $ids are |
|
3025 |
* passed, this defaults to the order of the $ids array ('post__in'). |
|
3026 |
* Otherwise default is 'menu_order ID'. |
|
3027 |
* @type int $id If an explicit $ids array is not present, this parameter |
|
3028 |
* will determine which attachments are used for the playlist. |
|
3029 |
* Default is the current post ID. |
|
3030 |
* @type array $ids Create a playlist out of these explicit attachment IDs. If empty, |
|
3031 |
* a playlist will be created from all $type attachments of $id. |
|
3032 |
* Default empty. |
|
3033 |
* @type array $exclude List of specific attachment IDs to exclude from the playlist. Default empty. |
|
3034 |
* @type string $style Playlist style to use. Accepts 'light' or 'dark'. Default 'light'. |
|
3035 |
* @type bool $tracklist Whether to show or hide the playlist. Default true. |
|
3036 |
* @type bool $tracknumbers Whether to show or hide the numbers next to entries in the playlist. Default true. |
|
3037 |
* @type bool $images Show or hide the video or audio thumbnail (Featured Image/post |
|
3038 |
* thumbnail). Default true. |
|
3039 |
* @type bool $artists Whether to show or hide artist name in the playlist. Default true. |
|
3040 |
* } |
|
3041 |
* |
|
3042 |
* @return string Playlist output. Empty string if the passed type is unsupported. |
|
3043 |
*/ |
|
3044 |
function wp_playlist_shortcode( $attr ) { |
|
3045 |
global $content_width; |
|
3046 |
$post = get_post(); |
|
3047 |
||
3048 |
static $instance = 0; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3049 |
++$instance; |
5 | 3050 |
|
3051 |
if ( ! empty( $attr['ids'] ) ) { |
|
3052 |
// 'ids' is explicitly ordered, unless you specify otherwise. |
|
3053 |
if ( empty( $attr['orderby'] ) ) { |
|
3054 |
$attr['orderby'] = 'post__in'; |
|
3055 |
} |
|
3056 |
$attr['include'] = $attr['ids']; |
|
3057 |
} |
|
3058 |
||
3059 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3060 |
* Filters the playlist output. |
5 | 3061 |
* |
16 | 3062 |
* Returning a non-empty value from the filter will short-circuit generation |
5 | 3063 |
* of the default playlist output, returning the passed value instead. |
3064 |
* |
|
3065 |
* @since 3.9.0 |
|
3066 |
* @since 4.2.0 The `$instance` parameter was added. |
|
3067 |
* |
|
3068 |
* @param string $output Playlist output. Default empty. |
|
3069 |
* @param array $attr An array of shortcode attributes. |
|
3070 |
* @param int $instance Unique numeric ID of this playlist shortcode instance. |
|
3071 |
*/ |
|
3072 |
$output = apply_filters( 'post_playlist', '', $attr, $instance ); |
|
16 | 3073 |
|
3074 |
if ( ! empty( $output ) ) { |
|
5 | 3075 |
return $output; |
3076 |
} |
|
3077 |
||
9 | 3078 |
$atts = shortcode_atts( |
3079 |
array( |
|
3080 |
'type' => 'audio', |
|
3081 |
'order' => 'ASC', |
|
3082 |
'orderby' => 'menu_order ID', |
|
3083 |
'id' => $post ? $post->ID : 0, |
|
3084 |
'include' => '', |
|
3085 |
'exclude' => '', |
|
3086 |
'style' => 'light', |
|
3087 |
'tracklist' => true, |
|
3088 |
'tracknumbers' => true, |
|
3089 |
'images' => true, |
|
3090 |
'artists' => true, |
|
3091 |
), |
|
3092 |
$attr, |
|
3093 |
'playlist' |
|
3094 |
); |
|
5 | 3095 |
|
18 | 3096 |
$id = (int) $atts['id']; |
5 | 3097 |
|
16 | 3098 |
if ( 'audio' !== $atts['type'] ) { |
5 | 3099 |
$atts['type'] = 'video'; |
3100 |
} |
|
3101 |
||
3102 |
$args = array( |
|
9 | 3103 |
'post_status' => 'inherit', |
3104 |
'post_type' => 'attachment', |
|
5 | 3105 |
'post_mime_type' => $atts['type'], |
9 | 3106 |
'order' => $atts['order'], |
3107 |
'orderby' => $atts['orderby'], |
|
5 | 3108 |
); |
3109 |
||
3110 |
if ( ! empty( $atts['include'] ) ) { |
|
3111 |
$args['include'] = $atts['include']; |
|
9 | 3112 |
$_attachments = get_posts( $args ); |
5 | 3113 |
|
3114 |
$attachments = array(); |
|
3115 |
foreach ( $_attachments as $key => $val ) { |
|
9 | 3116 |
$attachments[ $val->ID ] = $_attachments[ $key ]; |
5 | 3117 |
} |
3118 |
} elseif ( ! empty( $atts['exclude'] ) ) { |
|
3119 |
$args['post_parent'] = $id; |
|
9 | 3120 |
$args['exclude'] = $atts['exclude']; |
3121 |
$attachments = get_children( $args ); |
|
5 | 3122 |
} else { |
3123 |
$args['post_parent'] = $id; |
|
9 | 3124 |
$attachments = get_children( $args ); |
5 | 3125 |
} |
3126 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3127 |
if ( ! empty( $args['post_parent'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3128 |
$post_parent = get_post( $id ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3129 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3130 |
// Terminate the shortcode execution if the user cannot read the post or it is password-protected. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3131 |
if ( ! current_user_can( 'read_post', $post_parent->ID ) || post_password_required( $post_parent ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3132 |
return ''; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3133 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3134 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3135 |
|
5 | 3136 |
if ( empty( $attachments ) ) { |
3137 |
return ''; |
|
3138 |
} |
|
3139 |
||
3140 |
if ( is_feed() ) { |
|
3141 |
$output = "\n"; |
|
3142 |
foreach ( $attachments as $att_id => $attachment ) { |
|
3143 |
$output .= wp_get_attachment_link( $att_id ) . "\n"; |
|
3144 |
} |
|
3145 |
return $output; |
|
3146 |
} |
|
3147 |
||
16 | 3148 |
$outer = 22; // Default padding and border of wrapper. |
5 | 3149 |
|
9 | 3150 |
$default_width = 640; |
5 | 3151 |
$default_height = 360; |
3152 |
||
9 | 3153 |
$theme_width = empty( $content_width ) ? $default_width : ( $content_width - $outer ); |
5 | 3154 |
$theme_height = empty( $content_width ) ? $default_height : round( ( $default_height * $theme_width ) / $default_width ); |
3155 |
||
3156 |
$data = array( |
|
9 | 3157 |
'type' => $atts['type'], |
16 | 3158 |
// Don't pass strings to JSON, will be truthy in JS. |
9 | 3159 |
'tracklist' => wp_validate_boolean( $atts['tracklist'] ), |
5 | 3160 |
'tracknumbers' => wp_validate_boolean( $atts['tracknumbers'] ), |
9 | 3161 |
'images' => wp_validate_boolean( $atts['images'] ), |
3162 |
'artists' => wp_validate_boolean( $atts['artists'] ), |
|
5 | 3163 |
); |
3164 |
||
3165 |
$tracks = array(); |
|
3166 |
foreach ( $attachments as $attachment ) { |
|
9 | 3167 |
$url = wp_get_attachment_url( $attachment->ID ); |
5 | 3168 |
$ftype = wp_check_filetype( $url, wp_get_mime_types() ); |
3169 |
$track = array( |
|
9 | 3170 |
'src' => $url, |
3171 |
'type' => $ftype['type'], |
|
3172 |
'title' => $attachment->post_title, |
|
3173 |
'caption' => $attachment->post_excerpt, |
|
3174 |
'description' => $attachment->post_content, |
|
5 | 3175 |
); |
3176 |
||
3177 |
$track['meta'] = array(); |
|
9 | 3178 |
$meta = wp_get_attachment_metadata( $attachment->ID ); |
5 | 3179 |
if ( ! empty( $meta ) ) { |
3180 |
||
3181 |
foreach ( wp_get_attachment_id3_keys( $attachment ) as $key => $label ) { |
|
3182 |
if ( ! empty( $meta[ $key ] ) ) { |
|
3183 |
$track['meta'][ $key ] = $meta[ $key ]; |
|
3184 |
} |
|
3185 |
} |
|
3186 |
||
3187 |
if ( 'video' === $atts['type'] ) { |
|
3188 |
if ( ! empty( $meta['width'] ) && ! empty( $meta['height'] ) ) { |
|
9 | 3189 |
$width = $meta['width']; |
3190 |
$height = $meta['height']; |
|
5 | 3191 |
$theme_height = round( ( $height * $theme_width ) / $width ); |
3192 |
} else { |
|
9 | 3193 |
$width = $default_width; |
5 | 3194 |
$height = $default_height; |
3195 |
} |
|
3196 |
||
3197 |
$track['dimensions'] = array( |
|
3198 |
'original' => compact( 'width', 'height' ), |
|
9 | 3199 |
'resized' => array( |
3200 |
'width' => $theme_width, |
|
3201 |
'height' => $theme_height, |
|
3202 |
), |
|
5 | 3203 |
); |
3204 |
} |
|
3205 |
} |
|
3206 |
||
3207 |
if ( $atts['images'] ) { |
|
3208 |
$thumb_id = get_post_thumbnail_id( $attachment->ID ); |
|
3209 |
if ( ! empty( $thumb_id ) ) { |
|
3210 |
list( $src, $width, $height ) = wp_get_attachment_image_src( $thumb_id, 'full' ); |
|
9 | 3211 |
$track['image'] = compact( 'src', 'width', 'height' ); |
5 | 3212 |
list( $src, $width, $height ) = wp_get_attachment_image_src( $thumb_id, 'thumbnail' ); |
9 | 3213 |
$track['thumb'] = compact( 'src', 'width', 'height' ); |
5 | 3214 |
} else { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3215 |
$src = wp_mime_type_icon( $attachment->ID, '.svg' ); |
9 | 3216 |
$width = 48; |
3217 |
$height = 64; |
|
5 | 3218 |
$track['image'] = compact( 'src', 'width', 'height' ); |
3219 |
$track['thumb'] = compact( 'src', 'width', 'height' ); |
|
3220 |
} |
|
3221 |
} |
|
3222 |
||
3223 |
$tracks[] = $track; |
|
3224 |
} |
|
3225 |
$data['tracks'] = $tracks; |
|
3226 |
||
9 | 3227 |
$safe_type = esc_attr( $atts['type'] ); |
5 | 3228 |
$safe_style = esc_attr( $atts['style'] ); |
3229 |
||
3230 |
ob_start(); |
|
3231 |
||
3232 |
if ( 1 === $instance ) { |
|
3233 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3234 |
* Prints and enqueues playlist scripts, styles, and JavaScript templates. |
5 | 3235 |
* |
3236 |
* @since 3.9.0 |
|
3237 |
* |
|
3238 |
* @param string $type Type of playlist. Possible values are 'audio' or 'video'. |
|
3239 |
* @param string $style The 'theme' for the playlist. Core provides 'light' and 'dark'. |
|
3240 |
*/ |
|
3241 |
do_action( 'wp_playlist_scripts', $atts['type'], $atts['style'] ); |
|
9 | 3242 |
} |
3243 |
?> |
|
3244 |
<div class="wp-playlist wp-<?php echo $safe_type; ?>-playlist wp-playlist-<?php echo $safe_style; ?>"> |
|
3245 |
<?php if ( 'audio' === $atts['type'] ) : ?> |
|
18 | 3246 |
<div class="wp-playlist-current-item"></div> |
3247 |
<?php endif; ?> |
|
3248 |
<<?php echo $safe_type; ?> controls="controls" preload="none" width="<?php echo (int) $theme_width; ?>" |
|
3249 |
<?php |
|
3250 |
if ( 'video' === $safe_type ) { |
|
3251 |
echo ' height="', (int) $theme_height, '"'; |
|
3252 |
} |
|
3253 |
?> |
|
9 | 3254 |
></<?php echo $safe_type; ?>> |
5 | 3255 |
<div class="wp-playlist-next"></div> |
3256 |
<div class="wp-playlist-prev"></div> |
|
3257 |
<noscript> |
|
9 | 3258 |
<ol> |
18 | 3259 |
<?php |
3260 |
foreach ( $attachments as $att_id => $attachment ) { |
|
3261 |
printf( '<li>%s</li>', wp_get_attachment_link( $att_id ) ); |
|
3262 |
} |
|
3263 |
?> |
|
9 | 3264 |
</ol> |
5 | 3265 |
</noscript> |
9 | 3266 |
<script type="application/json" class="wp-playlist-script"><?php echo wp_json_encode( $data ); ?></script> |
5 | 3267 |
</div> |
3268 |
<?php |
|
3269 |
return ob_get_clean(); |
|
3270 |
} |
|
3271 |
add_shortcode( 'playlist', 'wp_playlist_shortcode' ); |
|
3272 |
||
3273 |
/** |
|
3274 |
* Provides a No-JS Flash fallback as a last resort for audio / video. |
|
0 | 3275 |
* |
3276 |
* @since 3.6.0 |
|
3277 |
* |
|
5 | 3278 |
* @param string $url The media element URL. |
3279 |
* @return string Fallback HTML. |
|
0 | 3280 |
*/ |
3281 |
function wp_mediaelement_fallback( $url ) { |
|
5 | 3282 |
/** |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3283 |
* Filters the MediaElement fallback output for no-JS. |
5 | 3284 |
* |
3285 |
* @since 3.6.0 |
|
3286 |
* |
|
3287 |
* @param string $output Fallback output for no-JS. |
|
3288 |
* @param string $url Media file URL. |
|
3289 |
*/ |
|
0 | 3290 |
return apply_filters( 'wp_mediaelement_fallback', sprintf( '<a href="%1$s">%1$s</a>', esc_url( $url ) ), $url ); |
3291 |
} |
|
3292 |
||
3293 |
/** |
|
16 | 3294 |
* Returns a filtered list of supported audio formats. |
0 | 3295 |
* |
3296 |
* @since 3.6.0 |
|
5 | 3297 |
* |
16 | 3298 |
* @return string[] Supported audio formats. |
0 | 3299 |
*/ |
3300 |
function wp_get_audio_extensions() { |
|
5 | 3301 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3302 |
* Filters the list of supported audio formats. |
5 | 3303 |
* |
3304 |
* @since 3.6.0 |
|
3305 |
* |
|
16 | 3306 |
* @param string[] $extensions An array of supported audio formats. Defaults are |
3307 |
* 'mp3', 'ogg', 'flac', 'm4a', 'wav'. |
|
5 | 3308 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3309 |
return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) ); |
0 | 3310 |
} |
3311 |
||
3312 |
/** |
|
5 | 3313 |
* Returns useful keys to use to lookup data from an attachment's stored metadata. |
3314 |
* |
|
3315 |
* @since 3.9.0 |
|
3316 |
* |
|
3317 |
* @param WP_Post $attachment The current attachment, provided for context. |
|
3318 |
* @param string $context Optional. The context. Accepts 'edit', 'display'. Default 'display'. |
|
16 | 3319 |
* @return string[] Key/value pairs of field keys to labels. |
5 | 3320 |
*/ |
3321 |
function wp_get_attachment_id3_keys( $attachment, $context = 'display' ) { |
|
3322 |
$fields = array( |
|
3323 |
'artist' => __( 'Artist' ), |
|
9 | 3324 |
'album' => __( 'Album' ), |
5 | 3325 |
); |
3326 |
||
3327 |
if ( 'display' === $context ) { |
|
3328 |
$fields['genre'] = __( 'Genre' ); |
|
3329 |
$fields['year'] = __( 'Year' ); |
|
3330 |
$fields['length_formatted'] = _x( 'Length', 'video or audio' ); |
|
3331 |
} elseif ( 'js' === $context ) { |
|
9 | 3332 |
$fields['bitrate'] = __( 'Bitrate' ); |
3333 |
$fields['bitrate_mode'] = __( 'Bitrate Mode' ); |
|
5 | 3334 |
} |
3335 |
||
3336 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3337 |
* Filters the editable list of keys to look up data from an attachment's metadata. |
5 | 3338 |
* |
3339 |
* @since 3.9.0 |
|
3340 |
* |
|
3341 |
* @param array $fields Key/value pairs of field keys to labels. |
|
3342 |
* @param WP_Post $attachment Attachment object. |
|
3343 |
* @param string $context The context. Accepts 'edit', 'display'. Default 'display'. |
|
3344 |
*/ |
|
3345 |
return apply_filters( 'wp_get_attachment_id3_keys', $fields, $attachment, $context ); |
|
3346 |
} |
|
3347 |
/** |
|
3348 |
* Builds the Audio shortcode output. |
|
0 | 3349 |
* |
3350 |
* This implements the functionality of the Audio Shortcode for displaying |
|
3351 |
* WordPress mp3s in a post. |
|
3352 |
* |
|
3353 |
* @since 3.6.0 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3354 |
* @since 6.8.0 Added the 'muted' attribute. |
0 | 3355 |
* |
5 | 3356 |
* @param array $attr { |
3357 |
* Attributes of the audio shortcode. |
|
3358 |
* |
|
3359 |
* @type string $src URL to the source of the audio file. Default empty. |
|
3360 |
* @type string $loop The 'loop' attribute for the `<audio>` element. Default empty. |
|
3361 |
* @type string $autoplay The 'autoplay' attribute for the `<audio>` element. Default empty. |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3362 |
* @type string $muted The 'muted' attribute for the `<audio>` element. Default 'false'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3363 |
* @type string $preload The 'preload' attribute for the `<audio>` element. Default 'none'. |
5 | 3364 |
* @type string $class The 'class' attribute for the `<audio>` element. Default 'wp-audio-shortcode'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3365 |
* @type string $style The 'style' attribute for the `<audio>` element. Default 'width: 100%;'. |
5 | 3366 |
* } |
3367 |
* @param string $content Shortcode content. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3368 |
* @return string|void HTML content to display audio. |
0 | 3369 |
*/ |
3370 |
function wp_audio_shortcode( $attr, $content = '' ) { |
|
3371 |
$post_id = get_post() ? get_the_ID() : 0; |
|
3372 |
||
5 | 3373 |
static $instance = 0; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3374 |
++$instance; |
0 | 3375 |
|
3376 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3377 |
* Filters the default audio shortcode output. |
0 | 3378 |
* |
5 | 3379 |
* If the filtered output isn't empty, it will be used instead of generating the default audio template. |
3380 |
* |
|
3381 |
* @since 3.6.0 |
|
0 | 3382 |
* |
5 | 3383 |
* @param string $html Empty variable to be replaced with shortcode markup. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3384 |
* @param array $attr Attributes of the shortcode. See {@see wp_audio_shortcode()}. |
5 | 3385 |
* @param string $content Shortcode content. |
3386 |
* @param int $instance Unique numeric ID of this audio shortcode instance. |
|
0 | 3387 |
*/ |
5 | 3388 |
$override = apply_filters( 'wp_audio_shortcode_override', '', $attr, $content, $instance ); |
16 | 3389 |
|
5 | 3390 |
if ( '' !== $override ) { |
3391 |
return $override; |
|
3392 |
} |
|
0 | 3393 |
|
3394 |
$audio = null; |
|
3395 |
||
3396 |
$default_types = wp_get_audio_extensions(); |
|
3397 |
$defaults_atts = array( |
|
3398 |
'src' => '', |
|
3399 |
'loop' => '', |
|
3400 |
'autoplay' => '', |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3401 |
'muted' => 'false', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3402 |
'preload' => 'none', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3403 |
'class' => 'wp-audio-shortcode', |
9 | 3404 |
'style' => 'width: 100%;', |
0 | 3405 |
); |
5 | 3406 |
foreach ( $default_types as $type ) { |
9 | 3407 |
$defaults_atts[ $type ] = ''; |
5 | 3408 |
} |
0 | 3409 |
|
3410 |
$atts = shortcode_atts( $defaults_atts, $attr, 'audio' ); |
|
3411 |
||
3412 |
$primary = false; |
|
5 | 3413 |
if ( ! empty( $atts['src'] ) ) { |
3414 |
$type = wp_check_filetype( $atts['src'], wp_get_mime_types() ); |
|
16 | 3415 |
|
3416 |
if ( ! in_array( strtolower( $type['ext'] ), $default_types, true ) ) { |
|
5 | 3417 |
return sprintf( '<a class="wp-embedded-audio" href="%s">%s</a>', esc_url( $atts['src'] ), esc_html( $atts['src'] ) ); |
3418 |
} |
|
16 | 3419 |
|
0 | 3420 |
$primary = true; |
3421 |
array_unshift( $default_types, 'src' ); |
|
3422 |
} else { |
|
3423 |
foreach ( $default_types as $ext ) { |
|
5 | 3424 |
if ( ! empty( $atts[ $ext ] ) ) { |
3425 |
$type = wp_check_filetype( $atts[ $ext ], wp_get_mime_types() ); |
|
16 | 3426 |
|
5 | 3427 |
if ( strtolower( $type['ext'] ) === $ext ) { |
0 | 3428 |
$primary = true; |
5 | 3429 |
} |
0 | 3430 |
} |
3431 |
} |
|
3432 |
} |
|
3433 |
||
3434 |
if ( ! $primary ) { |
|
3435 |
$audios = get_attached_media( 'audio', $post_id ); |
|
16 | 3436 |
|
5 | 3437 |
if ( empty( $audios ) ) { |
0 | 3438 |
return; |
5 | 3439 |
} |
0 | 3440 |
|
9 | 3441 |
$audio = reset( $audios ); |
5 | 3442 |
$atts['src'] = wp_get_attachment_url( $audio->ID ); |
16 | 3443 |
|
5 | 3444 |
if ( empty( $atts['src'] ) ) { |
0 | 3445 |
return; |
5 | 3446 |
} |
0 | 3447 |
|
3448 |
array_unshift( $default_types, 'src' ); |
|
3449 |
} |
|
3450 |
||
5 | 3451 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3452 |
* Filters the media library used for the audio shortcode. |
5 | 3453 |
* |
3454 |
* @since 3.6.0 |
|
3455 |
* |
|
3456 |
* @param string $library Media library used for the audio shortcode. |
|
3457 |
*/ |
|
0 | 3458 |
$library = apply_filters( 'wp_audio_shortcode_library', 'mediaelement' ); |
16 | 3459 |
|
0 | 3460 |
if ( 'mediaelement' === $library && did_action( 'init' ) ) { |
3461 |
wp_enqueue_style( 'wp-mediaelement' ); |
|
3462 |
wp_enqueue_script( 'wp-mediaelement' ); |
|
3463 |
} |
|
3464 |
||
5 | 3465 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3466 |
* Filters the class attribute for the audio shortcode output container. |
5 | 3467 |
* |
3468 |
* @since 3.6.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3469 |
* @since 4.9.0 The `$atts` parameter was added. |
5 | 3470 |
* |
3471 |
* @param string $class CSS class or list of space-separated classes. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3472 |
* @param array $atts Array of audio shortcode attributes. |
5 | 3473 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3474 |
$atts['class'] = apply_filters( 'wp_audio_shortcode_class', $atts['class'], $atts ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3475 |
|
5 | 3476 |
$html_atts = array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3477 |
'class' => $atts['class'], |
5 | 3478 |
'id' => sprintf( 'audio-%d-%d', $post_id, $instance ), |
3479 |
'loop' => wp_validate_boolean( $atts['loop'] ), |
|
3480 |
'autoplay' => wp_validate_boolean( $atts['autoplay'] ), |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3481 |
'muted' => wp_validate_boolean( $atts['muted'] ), |
5 | 3482 |
'preload' => $atts['preload'], |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3483 |
'style' => $atts['style'], |
0 | 3484 |
); |
3485 |
||
16 | 3486 |
// These ones should just be omitted altogether if they are blank. |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3487 |
foreach ( array( 'loop', 'autoplay', 'preload', 'muted' ) as $a ) { |
9 | 3488 |
if ( empty( $html_atts[ $a ] ) ) { |
3489 |
unset( $html_atts[ $a ] ); |
|
5 | 3490 |
} |
0 | 3491 |
} |
3492 |
||
3493 |
$attr_strings = array(); |
|
16 | 3494 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3495 |
foreach ( $html_atts as $attribute_name => $attribute_value ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3496 |
if ( in_array( $attribute_name, array( 'loop', 'autoplay', 'muted' ), true ) && true === $attribute_value ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3497 |
// Add boolean attributes without a value. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3498 |
$attr_strings[] = esc_attr( $attribute_name ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3499 |
} elseif ( 'preload' === $attribute_name && ! empty( $attribute_value ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3500 |
// Handle the preload attribute with specific allowed values. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3501 |
$allowed_preload_values = array( 'none', 'metadata', 'auto' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3502 |
if ( in_array( $attribute_value, $allowed_preload_values, true ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3503 |
$attr_strings[] = sprintf( '%s="%s"', esc_attr( $attribute_name ), esc_attr( $attribute_value ) ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3504 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3505 |
} else { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3506 |
// For other attributes, include the value. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3507 |
$attr_strings[] = sprintf( '%s="%s"', esc_attr( $attribute_name ), esc_attr( $attribute_value ) ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3508 |
} |
0 | 3509 |
} |
3510 |
||
3511 |
$html = ''; |
|
16 | 3512 |
|
5 | 3513 |
if ( 'mediaelement' === $library && 1 === $instance ) { |
0 | 3514 |
$html .= "<!--[if lt IE 9]><script>document.createElement('audio');</script><![endif]-->\n"; |
5 | 3515 |
} |
16 | 3516 |
|
18 | 3517 |
$html .= sprintf( '<audio %s controls="controls">', implode( ' ', $attr_strings ) ); |
0 | 3518 |
|
3519 |
$fileurl = ''; |
|
9 | 3520 |
$source = '<source type="%s" src="%s" />'; |
16 | 3521 |
|
0 | 3522 |
foreach ( $default_types as $fallback ) { |
5 | 3523 |
if ( ! empty( $atts[ $fallback ] ) ) { |
3524 |
if ( empty( $fileurl ) ) { |
|
3525 |
$fileurl = $atts[ $fallback ]; |
|
3526 |
} |
|
16 | 3527 |
|
9 | 3528 |
$type = wp_check_filetype( $atts[ $fallback ], wp_get_mime_types() ); |
3529 |
$url = add_query_arg( '_', $instance, $atts[ $fallback ] ); |
|
5 | 3530 |
$html .= sprintf( $source, $type['type'], esc_url( $url ) ); |
0 | 3531 |
} |
3532 |
} |
|
3533 |
||
5 | 3534 |
if ( 'mediaelement' === $library ) { |
0 | 3535 |
$html .= wp_mediaelement_fallback( $fileurl ); |
5 | 3536 |
} |
16 | 3537 |
|
0 | 3538 |
$html .= '</audio>'; |
3539 |
||
5 | 3540 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3541 |
* Filters the audio shortcode output. |
5 | 3542 |
* |
3543 |
* @since 3.6.0 |
|
3544 |
* |
|
3545 |
* @param string $html Audio shortcode HTML output. |
|
3546 |
* @param array $atts Array of audio shortcode attributes. |
|
3547 |
* @param string $audio Audio file. |
|
3548 |
* @param int $post_id Post ID. |
|
3549 |
* @param string $library Media library used for the audio shortcode. |
|
3550 |
*/ |
|
0 | 3551 |
return apply_filters( 'wp_audio_shortcode', $html, $atts, $audio, $post_id, $library ); |
3552 |
} |
|
3553 |
add_shortcode( 'audio', 'wp_audio_shortcode' ); |
|
3554 |
||
3555 |
/** |
|
16 | 3556 |
* Returns a filtered list of supported video formats. |
0 | 3557 |
* |
3558 |
* @since 3.6.0 |
|
5 | 3559 |
* |
16 | 3560 |
* @return string[] List of supported video formats. |
0 | 3561 |
*/ |
3562 |
function wp_get_video_extensions() { |
|
5 | 3563 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3564 |
* Filters the list of supported video formats. |
5 | 3565 |
* |
3566 |
* @since 3.6.0 |
|
3567 |
* |
|
16 | 3568 |
* @param string[] $extensions An array of supported video formats. Defaults are |
3569 |
* 'mp4', 'm4v', 'webm', 'ogv', 'flv'. |
|
5 | 3570 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3571 |
return apply_filters( 'wp_video_extensions', array( 'mp4', 'm4v', 'webm', 'ogv', 'flv' ) ); |
0 | 3572 |
} |
3573 |
||
3574 |
/** |
|
5 | 3575 |
* Builds the Video shortcode output. |
0 | 3576 |
* |
3577 |
* This implements the functionality of the Video Shortcode for displaying |
|
3578 |
* WordPress mp4s in a post. |
|
3579 |
* |
|
3580 |
* @since 3.6.0 |
|
3581 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3582 |
* @global int $content_width |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3583 |
* |
5 | 3584 |
* @param array $attr { |
3585 |
* Attributes of the shortcode. |
|
3586 |
* |
|
3587 |
* @type string $src URL to the source of the video file. Default empty. |
|
3588 |
* @type int $height Height of the video embed in pixels. Default 360. |
|
3589 |
* @type int $width Width of the video embed in pixels. Default $content_width or 640. |
|
3590 |
* @type string $poster The 'poster' attribute for the `<video>` element. Default empty. |
|
3591 |
* @type string $loop The 'loop' attribute for the `<video>` element. Default empty. |
|
3592 |
* @type string $autoplay The 'autoplay' attribute for the `<video>` element. Default empty. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3593 |
* @type string $muted The 'muted' attribute for the `<video>` element. Default false. |
5 | 3594 |
* @type string $preload The 'preload' attribute for the `<video>` element. |
3595 |
* Default 'metadata'. |
|
3596 |
* @type string $class The 'class' attribute for the `<video>` element. |
|
3597 |
* Default 'wp-video-shortcode'. |
|
3598 |
* } |
|
3599 |
* @param string $content Shortcode content. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3600 |
* @return string|void HTML content to display video. |
0 | 3601 |
*/ |
3602 |
function wp_video_shortcode( $attr, $content = '' ) { |
|
3603 |
global $content_width; |
|
3604 |
$post_id = get_post() ? get_the_ID() : 0; |
|
3605 |
||
5 | 3606 |
static $instance = 0; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3607 |
++$instance; |
0 | 3608 |
|
3609 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3610 |
* Filters the default video shortcode output. |
0 | 3611 |
* |
5 | 3612 |
* If the filtered output isn't empty, it will be used instead of generating |
3613 |
* the default video template. |
|
3614 |
* |
|
3615 |
* @since 3.6.0 |
|
3616 |
* |
|
3617 |
* @see wp_video_shortcode() |
|
0 | 3618 |
* |
5 | 3619 |
* @param string $html Empty variable to be replaced with shortcode markup. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3620 |
* @param array $attr Attributes of the shortcode. See {@see wp_video_shortcode()}. |
5 | 3621 |
* @param string $content Video shortcode content. |
3622 |
* @param int $instance Unique numeric ID of this video shortcode instance. |
|
0 | 3623 |
*/ |
5 | 3624 |
$override = apply_filters( 'wp_video_shortcode_override', '', $attr, $content, $instance ); |
16 | 3625 |
|
5 | 3626 |
if ( '' !== $override ) { |
3627 |
return $override; |
|
3628 |
} |
|
0 | 3629 |
|
3630 |
$video = null; |
|
3631 |
||
3632 |
$default_types = wp_get_video_extensions(); |
|
3633 |
$defaults_atts = array( |
|
3634 |
'src' => '', |
|
3635 |
'poster' => '', |
|
3636 |
'loop' => '', |
|
3637 |
'autoplay' => '', |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3638 |
'muted' => 'false', |
0 | 3639 |
'preload' => 'metadata', |
5 | 3640 |
'width' => 640, |
0 | 3641 |
'height' => 360, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3642 |
'class' => 'wp-video-shortcode', |
0 | 3643 |
); |
3644 |
||
5 | 3645 |
foreach ( $default_types as $type ) { |
9 | 3646 |
$defaults_atts[ $type ] = ''; |
5 | 3647 |
} |
0 | 3648 |
|
3649 |
$atts = shortcode_atts( $defaults_atts, $attr, 'video' ); |
|
5 | 3650 |
|
3651 |
if ( is_admin() ) { |
|
16 | 3652 |
// Shrink the video so it isn't huge in the admin. |
5 | 3653 |
if ( $atts['width'] > $defaults_atts['width'] ) { |
3654 |
$atts['height'] = round( ( $atts['height'] * $defaults_atts['width'] ) / $atts['width'] ); |
|
9 | 3655 |
$atts['width'] = $defaults_atts['width']; |
5 | 3656 |
} |
3657 |
} else { |
|
16 | 3658 |
// If the video is bigger than the theme. |
5 | 3659 |
if ( ! empty( $content_width ) && $atts['width'] > $content_width ) { |
3660 |
$atts['height'] = round( ( $atts['height'] * $content_width ) / $atts['width'] ); |
|
9 | 3661 |
$atts['width'] = $content_width; |
5 | 3662 |
} |
3663 |
} |
|
3664 |
||
16 | 3665 |
$is_vimeo = false; |
3666 |
$is_youtube = false; |
|
9 | 3667 |
$yt_pattern = '#^https?://(?:www\.)?(?:youtube\.com/watch|youtu\.be/)#'; |
5 | 3668 |
$vimeo_pattern = '#^https?://(.+\.)?vimeo\.com/.*#'; |
0 | 3669 |
|
3670 |
$primary = false; |
|
5 | 3671 |
if ( ! empty( $atts['src'] ) ) { |
9 | 3672 |
$is_vimeo = ( preg_match( $vimeo_pattern, $atts['src'] ) ); |
3673 |
$is_youtube = ( preg_match( $yt_pattern, $atts['src'] ) ); |
|
16 | 3674 |
|
5 | 3675 |
if ( ! $is_youtube && ! $is_vimeo ) { |
3676 |
$type = wp_check_filetype( $atts['src'], wp_get_mime_types() ); |
|
16 | 3677 |
|
3678 |
if ( ! in_array( strtolower( $type['ext'] ), $default_types, true ) ) { |
|
5 | 3679 |
return sprintf( '<a class="wp-embedded-video" href="%s">%s</a>', esc_url( $atts['src'] ), esc_html( $atts['src'] ) ); |
3680 |
} |
|
3681 |
} |
|
3682 |
||
3683 |
if ( $is_vimeo ) { |
|
9 | 3684 |
wp_enqueue_script( 'mediaelement-vimeo' ); |
5 | 3685 |
} |
3686 |
||
0 | 3687 |
$primary = true; |
3688 |
array_unshift( $default_types, 'src' ); |
|
3689 |
} else { |
|
3690 |
foreach ( $default_types as $ext ) { |
|
5 | 3691 |
if ( ! empty( $atts[ $ext ] ) ) { |
3692 |
$type = wp_check_filetype( $atts[ $ext ], wp_get_mime_types() ); |
|
3693 |
if ( strtolower( $type['ext'] ) === $ext ) { |
|
0 | 3694 |
$primary = true; |
5 | 3695 |
} |
0 | 3696 |
} |
3697 |
} |
|
3698 |
} |
|
3699 |
||
3700 |
if ( ! $primary ) { |
|
3701 |
$videos = get_attached_media( 'video', $post_id ); |
|
5 | 3702 |
if ( empty( $videos ) ) { |
0 | 3703 |
return; |
5 | 3704 |
} |
0 | 3705 |
|
9 | 3706 |
$video = reset( $videos ); |
5 | 3707 |
$atts['src'] = wp_get_attachment_url( $video->ID ); |
3708 |
if ( empty( $atts['src'] ) ) { |
|
0 | 3709 |
return; |
5 | 3710 |
} |
0 | 3711 |
|
3712 |
array_unshift( $default_types, 'src' ); |
|
3713 |
} |
|
3714 |
||
5 | 3715 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3716 |
* Filters the media library used for the video shortcode. |
5 | 3717 |
* |
3718 |
* @since 3.6.0 |
|
3719 |
* |
|
3720 |
* @param string $library Media library used for the video shortcode. |
|
3721 |
*/ |
|
0 | 3722 |
$library = apply_filters( 'wp_video_shortcode_library', 'mediaelement' ); |
3723 |
if ( 'mediaelement' === $library && did_action( 'init' ) ) { |
|
3724 |
wp_enqueue_style( 'wp-mediaelement' ); |
|
3725 |
wp_enqueue_script( 'wp-mediaelement' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3726 |
wp_enqueue_script( 'mediaelement-vimeo' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3727 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3728 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3729 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3730 |
* MediaElement.js has issues with some URL formats for Vimeo and YouTube, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3731 |
* so update the URL to prevent the ME.js player from breaking. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3732 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3733 |
if ( 'mediaelement' === $library ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3734 |
if ( $is_youtube ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3735 |
// Remove `feature` query arg and force SSL - see #40866. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3736 |
$atts['src'] = remove_query_arg( 'feature', $atts['src'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3737 |
$atts['src'] = set_url_scheme( $atts['src'], 'https' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3738 |
} elseif ( $is_vimeo ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3739 |
// Remove all query arguments and force SSL - see #40866. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3740 |
$parsed_vimeo_url = wp_parse_url( $atts['src'] ); |
9 | 3741 |
$vimeo_src = 'https://' . $parsed_vimeo_url['host'] . $parsed_vimeo_url['path']; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3742 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3743 |
// Add loop param for mejs bug - see #40977, not needed after #39686. |
9 | 3744 |
$loop = $atts['loop'] ? '1' : '0'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3745 |
$atts['src'] = add_query_arg( 'loop', $loop, $vimeo_src ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3746 |
} |
0 | 3747 |
} |
3748 |
||
5 | 3749 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3750 |
* Filters the class attribute for the video shortcode output container. |
5 | 3751 |
* |
3752 |
* @since 3.6.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3753 |
* @since 4.9.0 The `$atts` parameter was added. |
5 | 3754 |
* |
3755 |
* @param string $class CSS class or list of space-separated classes. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3756 |
* @param array $atts Array of video shortcode attributes. |
5 | 3757 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3758 |
$atts['class'] = apply_filters( 'wp_video_shortcode_class', $atts['class'], $atts ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3759 |
|
5 | 3760 |
$html_atts = array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3761 |
'class' => $atts['class'], |
5 | 3762 |
'id' => sprintf( 'video-%d-%d', $post_id, $instance ), |
3763 |
'width' => absint( $atts['width'] ), |
|
3764 |
'height' => absint( $atts['height'] ), |
|
3765 |
'poster' => esc_url( $atts['poster'] ), |
|
3766 |
'loop' => wp_validate_boolean( $atts['loop'] ), |
|
3767 |
'autoplay' => wp_validate_boolean( $atts['autoplay'] ), |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3768 |
'muted' => wp_validate_boolean( $atts['muted'] ), |
5 | 3769 |
'preload' => $atts['preload'], |
0 | 3770 |
); |
3771 |
||
16 | 3772 |
// These ones should just be omitted altogether if they are blank. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3773 |
foreach ( array( 'poster', 'loop', 'autoplay', 'preload', 'muted' ) as $a ) { |
9 | 3774 |
if ( empty( $html_atts[ $a ] ) ) { |
3775 |
unset( $html_atts[ $a ] ); |
|
5 | 3776 |
} |
0 | 3777 |
} |
3778 |
||
3779 |
$attr_strings = array(); |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3780 |
foreach ( $html_atts as $attribute_name => $attribute_value ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3781 |
if ( in_array( $attribute_name, array( 'loop', 'autoplay', 'muted' ), true ) && true === $attribute_value ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3782 |
// Add boolean attributes without their value for true. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3783 |
$attr_strings[] = esc_attr( $attribute_name ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3784 |
} elseif ( 'preload' === $attribute_name && ! empty( $attribute_value ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3785 |
// Handle the preload attribute with specific allowed values. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3786 |
$allowed_preload_values = array( 'none', 'metadata', 'auto' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3787 |
if ( in_array( $attribute_value, $allowed_preload_values, true ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3788 |
$attr_strings[] = sprintf( '%s="%s"', esc_attr( $attribute_name ), esc_attr( $attribute_value ) ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3789 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3790 |
} elseif ( ! empty( $attribute_value ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3791 |
// For non-boolean attributes, add them with their value. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3792 |
$attr_strings[] = sprintf( '%s="%s"', esc_attr( $attribute_name ), esc_attr( $attribute_value ) ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
3793 |
} |
0 | 3794 |
} |
3795 |
||
3796 |
$html = ''; |
|
18 | 3797 |
|
5 | 3798 |
if ( 'mediaelement' === $library && 1 === $instance ) { |
0 | 3799 |
$html .= "<!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->\n"; |
5 | 3800 |
} |
18 | 3801 |
|
3802 |
$html .= sprintf( '<video %s controls="controls">', implode( ' ', $attr_strings ) ); |
|
0 | 3803 |
|
3804 |
$fileurl = ''; |
|
9 | 3805 |
$source = '<source type="%s" src="%s" />'; |
18 | 3806 |
|
0 | 3807 |
foreach ( $default_types as $fallback ) { |
5 | 3808 |
if ( ! empty( $atts[ $fallback ] ) ) { |
3809 |
if ( empty( $fileurl ) ) { |
|
3810 |
$fileurl = $atts[ $fallback ]; |
|
3811 |
} |
|
3812 |
if ( 'src' === $fallback && $is_youtube ) { |
|
3813 |
$type = array( 'type' => 'video/youtube' ); |
|
3814 |
} elseif ( 'src' === $fallback && $is_vimeo ) { |
|
3815 |
$type = array( 'type' => 'video/vimeo' ); |
|
3816 |
} else { |
|
3817 |
$type = wp_check_filetype( $atts[ $fallback ], wp_get_mime_types() ); |
|
3818 |
} |
|
9 | 3819 |
$url = add_query_arg( '_', $instance, $atts[ $fallback ] ); |
5 | 3820 |
$html .= sprintf( $source, $type['type'], esc_url( $url ) ); |
0 | 3821 |
} |
3822 |
} |
|
5 | 3823 |
|
3824 |
if ( ! empty( $content ) ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3825 |
if ( str_contains( $content, "\n" ) ) { |
5 | 3826 |
$content = str_replace( array( "\r\n", "\n", "\t" ), '', $content ); |
3827 |
} |
|
3828 |
$html .= trim( $content ); |
|
3829 |
} |
|
3830 |
||
3831 |
if ( 'mediaelement' === $library ) { |
|
0 | 3832 |
$html .= wp_mediaelement_fallback( $fileurl ); |
5 | 3833 |
} |
0 | 3834 |
$html .= '</video>'; |
3835 |
||
5 | 3836 |
$width_rule = ''; |
3837 |
if ( ! empty( $atts['width'] ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3838 |
$width_rule = sprintf( 'width: %dpx;', $atts['width'] ); |
5 | 3839 |
} |
3840 |
$output = sprintf( '<div style="%s" class="wp-video">%s</div>', $width_rule, $html ); |
|
3841 |
||
3842 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3843 |
* Filters the output of the video shortcode. |
5 | 3844 |
* |
3845 |
* @since 3.6.0 |
|
3846 |
* |
|
3847 |
* @param string $output Video shortcode HTML output. |
|
3848 |
* @param array $atts Array of video shortcode attributes. |
|
3849 |
* @param string $video Video file. |
|
3850 |
* @param int $post_id Post ID. |
|
3851 |
* @param string $library Media library used for the video shortcode. |
|
3852 |
*/ |
|
3853 |
return apply_filters( 'wp_video_shortcode', $output, $atts, $video, $post_id, $library ); |
|
0 | 3854 |
} |
3855 |
add_shortcode( 'video', 'wp_video_shortcode' ); |
|
3856 |
||
3857 |
/** |
|
18 | 3858 |
* Gets the previous image link that has the same post parent. |
3859 |
* |
|
3860 |
* @since 5.8.0 |
|
3861 |
* |
|
3862 |
* @see get_adjacent_image_link() |
|
3863 |
* |
|
3864 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
|
3865 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
3866 |
* @param string|false $text Optional. Link text. Default false. |
|
3867 |
* @return string Markup for previous image link. |
|
3868 |
*/ |
|
3869 |
function get_previous_image_link( $size = 'thumbnail', $text = false ) { |
|
3870 |
return get_adjacent_image_link( true, $size, $text ); |
|
3871 |
} |
|
3872 |
||
3873 |
/** |
|
5 | 3874 |
* Displays previous image link that has the same post parent. |
0 | 3875 |
* |
3876 |
* @since 2.5.0 |
|
5 | 3877 |
* |
18 | 3878 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
3879 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
3880 |
* @param string|false $text Optional. Link text. Default false. |
|
0 | 3881 |
*/ |
5 | 3882 |
function previous_image_link( $size = 'thumbnail', $text = false ) { |
18 | 3883 |
echo get_previous_image_link( $size, $text ); |
3884 |
} |
|
3885 |
||
3886 |
/** |
|
3887 |
* Gets the next image link that has the same post parent. |
|
3888 |
* |
|
3889 |
* @since 5.8.0 |
|
3890 |
* |
|
3891 |
* @see get_adjacent_image_link() |
|
3892 |
* |
|
3893 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
|
3894 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
3895 |
* @param string|false $text Optional. Link text. Default false. |
|
3896 |
* @return string Markup for next image link. |
|
3897 |
*/ |
|
3898 |
function get_next_image_link( $size = 'thumbnail', $text = false ) { |
|
3899 |
return get_adjacent_image_link( false, $size, $text ); |
|
0 | 3900 |
} |
3901 |
||
3902 |
/** |
|
5 | 3903 |
* Displays next image link that has the same post parent. |
0 | 3904 |
* |
3905 |
* @since 2.5.0 |
|
5 | 3906 |
* |
18 | 3907 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
3908 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
3909 |
* @param string|false $text Optional. Link text. Default false. |
|
0 | 3910 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3911 |
function next_image_link( $size = 'thumbnail', $text = false ) { |
18 | 3912 |
echo get_next_image_link( $size, $text ); |
0 | 3913 |
} |
3914 |
||
3915 |
/** |
|
18 | 3916 |
* Gets the next or previous image link that has the same post parent. |
0 | 3917 |
* |
3918 |
* Retrieves the current attachment object from the $post global. |
|
3919 |
* |
|
18 | 3920 |
* @since 5.8.0 |
0 | 3921 |
* |
5 | 3922 |
* @param bool $prev Optional. Whether to display the next (false) or previous (true) link. Default true. |
18 | 3923 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
3924 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
5 | 3925 |
* @param bool $text Optional. Link text. Default false. |
18 | 3926 |
* @return string Markup for image link. |
0 | 3927 |
*/ |
18 | 3928 |
function get_adjacent_image_link( $prev = true, $size = 'thumbnail', $text = false ) { |
9 | 3929 |
$post = get_post(); |
3930 |
$attachments = array_values( |
|
3931 |
get_children( |
|
3932 |
array( |
|
3933 |
'post_parent' => $post->post_parent, |
|
3934 |
'post_status' => 'inherit', |
|
3935 |
'post_type' => 'attachment', |
|
3936 |
'post_mime_type' => 'image', |
|
3937 |
'order' => 'ASC', |
|
3938 |
'orderby' => 'menu_order ID', |
|
3939 |
) |
|
3940 |
) |
|
3941 |
); |
|
0 | 3942 |
|
5 | 3943 |
foreach ( $attachments as $k => $attachment ) { |
18 | 3944 |
if ( (int) $attachment->ID === (int) $post->ID ) { |
0 | 3945 |
break; |
5 | 3946 |
} |
3947 |
} |
|
3948 |
||
9 | 3949 |
$output = ''; |
5 | 3950 |
$attachment_id = 0; |
3951 |
||
3952 |
if ( $attachments ) { |
|
3953 |
$k = $prev ? $k - 1 : $k + 1; |
|
3954 |
||
3955 |
if ( isset( $attachments[ $k ] ) ) { |
|
3956 |
$attachment_id = $attachments[ $k ]->ID; |
|
18 | 3957 |
$attr = array( 'alt' => get_the_title( $attachment_id ) ); |
3958 |
$output = wp_get_attachment_link( $attachment_id, $size, true, false, $text, $attr ); |
|
5 | 3959 |
} |
0 | 3960 |
} |
3961 |
||
3962 |
$adjacent = $prev ? 'previous' : 'next'; |
|
5 | 3963 |
|
3964 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3965 |
* Filters the adjacent image link. |
5 | 3966 |
* |
3967 |
* The dynamic portion of the hook name, `$adjacent`, refers to the type of adjacency, |
|
3968 |
* either 'next', or 'previous'. |
|
3969 |
* |
|
18 | 3970 |
* Possible hook names include: |
3971 |
* |
|
3972 |
* - `next_image_link` |
|
3973 |
* - `previous_image_link` |
|
3974 |
* |
|
5 | 3975 |
* @since 3.5.0 |
3976 |
* |
|
3977 |
* @param string $output Adjacent image HTML markup. |
|
3978 |
* @param int $attachment_id Attachment ID |
|
18 | 3979 |
* @param string|int[] $size Requested image size. Can be any registered image size name, or |
3980 |
* an array of width and height values in pixels (in that order). |
|
5 | 3981 |
* @param string $text Link text. |
3982 |
*/ |
|
18 | 3983 |
return apply_filters( "{$adjacent}_image_link", $output, $attachment_id, $size, $text ); |
3984 |
} |
|
3985 |
||
3986 |
/** |
|
3987 |
* Displays next or previous image link that has the same post parent. |
|
3988 |
* |
|
3989 |
* Retrieves the current attachment object from the $post global. |
|
3990 |
* |
|
3991 |
* @since 2.5.0 |
|
3992 |
* |
|
3993 |
* @param bool $prev Optional. Whether to display the next (false) or previous (true) link. Default true. |
|
3994 |
* @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array |
|
3995 |
* of width and height values in pixels (in that order). Default 'thumbnail'. |
|
3996 |
* @param bool $text Optional. Link text. Default false. |
|
3997 |
*/ |
|
3998 |
function adjacent_image_link( $prev = true, $size = 'thumbnail', $text = false ) { |
|
3999 |
echo get_adjacent_image_link( $prev, $size, $text ); |
|
0 | 4000 |
} |
4001 |
||
4002 |
/** |
|
5 | 4003 |
* Retrieves taxonomies attached to given the attachment. |
0 | 4004 |
* |
4005 |
* @since 2.5.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4006 |
* @since 4.7.0 Introduced the `$output` parameter. |
0 | 4007 |
* |
5 | 4008 |
* @param int|array|object $attachment Attachment ID, data array, or data object. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4009 |
* @param string $output Output type. 'names' to return an array of taxonomy names, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4010 |
* or 'objects' to return an array of taxonomy objects. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4011 |
* Default is 'names'. |
16 | 4012 |
* @return string[]|WP_Taxonomy[] List of taxonomies or taxonomy names. Empty array on failure. |
0 | 4013 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4014 |
function get_attachment_taxonomies( $attachment, $output = 'names' ) { |
5 | 4015 |
if ( is_int( $attachment ) ) { |
4016 |
$attachment = get_post( $attachment ); |
|
4017 |
} elseif ( is_array( $attachment ) ) { |
|
0 | 4018 |
$attachment = (object) $attachment; |
5 | 4019 |
} |
16 | 4020 |
|
9 | 4021 |
if ( ! is_object( $attachment ) ) { |
0 | 4022 |
return array(); |
9 | 4023 |
} |
4024 |
||
4025 |
$file = get_attached_file( $attachment->ID ); |
|
4026 |
$filename = wp_basename( $file ); |
|
4027 |
||
4028 |
$objects = array( 'attachment' ); |
|
4029 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4030 |
if ( str_contains( $filename, '.' ) ) { |
9 | 4031 |
$objects[] = 'attachment:' . substr( $filename, strrpos( $filename, '.' ) + 1 ); |
4032 |
} |
|
16 | 4033 |
|
9 | 4034 |
if ( ! empty( $attachment->post_mime_type ) ) { |
0 | 4035 |
$objects[] = 'attachment:' . $attachment->post_mime_type; |
16 | 4036 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4037 |
if ( str_contains( $attachment->post_mime_type, '/' ) ) { |
9 | 4038 |
foreach ( explode( '/', $attachment->post_mime_type ) as $token ) { |
4039 |
if ( ! empty( $token ) ) { |
|
0 | 4040 |
$objects[] = "attachment:$token"; |
9 | 4041 |
} |
4042 |
} |
|
4043 |
} |
|
0 | 4044 |
} |
4045 |
||
4046 |
$taxonomies = array(); |
|
16 | 4047 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4048 |
foreach ( $objects as $object ) { |
16 | 4049 |
$taxes = get_object_taxonomies( $object, $output ); |
4050 |
||
4051 |
if ( $taxes ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4052 |
$taxonomies = array_merge( $taxonomies, $taxes ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4053 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4054 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4055 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4056 |
if ( 'names' === $output ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4057 |
$taxonomies = array_unique( $taxonomies ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4058 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4059 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4060 |
return $taxonomies; |
0 | 4061 |
} |
4062 |
||
4063 |
/** |
|
9 | 4064 |
* Retrieves all of the taxonomies that are registered for attachments. |
0 | 4065 |
* |
4066 |
* Handles mime-type-specific taxonomies such as attachment:image and attachment:video. |
|
4067 |
* |
|
4068 |
* @since 3.5.0 |
|
16 | 4069 |
* |
5 | 4070 |
* @see get_taxonomies() |
0 | 4071 |
* |
5 | 4072 |
* @param string $output Optional. The type of taxonomy output to return. Accepts 'names' or 'objects'. |
4073 |
* Default 'names'. |
|
9 | 4074 |
* @return string[]|WP_Taxonomy[] Array of names or objects of registered taxonomies for attachments. |
0 | 4075 |
*/ |
4076 |
function get_taxonomies_for_attachments( $output = 'names' ) { |
|
4077 |
$taxonomies = array(); |
|
16 | 4078 |
|
0 | 4079 |
foreach ( get_taxonomies( array(), 'objects' ) as $taxonomy ) { |
4080 |
foreach ( $taxonomy->object_type as $object_type ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4081 |
if ( 'attachment' === $object_type || str_starts_with( $object_type, 'attachment:' ) ) { |
16 | 4082 |
if ( 'names' === $output ) { |
0 | 4083 |
$taxonomies[] = $taxonomy->name; |
9 | 4084 |
} else { |
0 | 4085 |
$taxonomies[ $taxonomy->name ] = $taxonomy; |
9 | 4086 |
} |
0 | 4087 |
break; |
4088 |
} |
|
4089 |
} |
|
4090 |
} |
|
4091 |
||
4092 |
return $taxonomies; |
|
4093 |
} |
|
4094 |
||
4095 |
/** |
|
18 | 4096 |
* Determines whether the value is an acceptable type for GD image functions. |
4097 |
* |
|
4098 |
* In PHP 8.0, the GD extension uses GdImage objects for its data structures. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4099 |
* This function checks if the passed value is either a GdImage object instance |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4100 |
* or a resource of type `gd`. Any other type will return false. |
18 | 4101 |
* |
4102 |
* @since 5.6.0 |
|
4103 |
* |
|
4104 |
* @param resource|GdImage|false $image A value to check the type for. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4105 |
* @return bool True if `$image` is either a GD image resource or a GdImage instance, |
18 | 4106 |
* false otherwise. |
4107 |
*/ |
|
4108 |
function is_gd_image( $image ) { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4109 |
if ( $image instanceof GdImage |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4110 |
|| is_resource( $image ) && 'gd' === get_resource_type( $image ) |
18 | 4111 |
) { |
4112 |
return true; |
|
4113 |
} |
|
4114 |
||
4115 |
return false; |
|
4116 |
} |
|
4117 |
||
4118 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4119 |
* Creates a new GD image resource with transparency support. |
5 | 4120 |
* |
16 | 4121 |
* @todo Deprecate if possible. |
0 | 4122 |
* |
4123 |
* @since 2.9.0 |
|
4124 |
* |
|
5 | 4125 |
* @param int $width Image width in pixels. |
18 | 4126 |
* @param int $height Image height in pixels. |
4127 |
* @return resource|GdImage|false The GD image resource or GdImage instance on success. |
|
4128 |
* False on failure. |
|
0 | 4129 |
*/ |
9 | 4130 |
function wp_imagecreatetruecolor( $width, $height ) { |
4131 |
$img = imagecreatetruecolor( $width, $height ); |
|
18 | 4132 |
|
4133 |
if ( is_gd_image( $img ) |
|
4134 |
&& function_exists( 'imagealphablending' ) && function_exists( 'imagesavealpha' ) |
|
4135 |
) { |
|
9 | 4136 |
imagealphablending( $img, false ); |
4137 |
imagesavealpha( $img, true ); |
|
0 | 4138 |
} |
18 | 4139 |
|
0 | 4140 |
return $img; |
4141 |
} |
|
4142 |
||
4143 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4144 |
* Based on a supplied width/height example, returns the biggest possible dimensions based on the max width/height. |
0 | 4145 |
* |
4146 |
* @since 2.9.0 |
|
5 | 4147 |
* |
4148 |
* @see wp_constrain_dimensions() |
|
0 | 4149 |
* |
5 | 4150 |
* @param int $example_width The width of an example embed. |
0 | 4151 |
* @param int $example_height The height of an example embed. |
5 | 4152 |
* @param int $max_width The maximum allowed width. |
4153 |
* @param int $max_height The maximum allowed height. |
|
16 | 4154 |
* @return int[] { |
4155 |
* An array of maximum width and height values. |
|
4156 |
* |
|
4157 |
* @type int $0 The maximum width in pixels. |
|
4158 |
* @type int $1 The maximum height in pixels. |
|
4159 |
* } |
|
0 | 4160 |
*/ |
4161 |
function wp_expand_dimensions( $example_width, $example_height, $max_width, $max_height ) { |
|
4162 |
$example_width = (int) $example_width; |
|
4163 |
$example_height = (int) $example_height; |
|
4164 |
$max_width = (int) $max_width; |
|
4165 |
$max_height = (int) $max_height; |
|
4166 |
||
4167 |
return wp_constrain_dimensions( $example_width * 1000000, $example_height * 1000000, $max_width, $max_height ); |
|
4168 |
} |
|
4169 |
||
4170 |
/** |
|
5 | 4171 |
* Determines the maximum upload size allowed in php.ini. |
0 | 4172 |
* |
4173 |
* @since 2.5.0 |
|
4174 |
* |
|
4175 |
* @return int Allowed upload size. |
|
4176 |
*/ |
|
4177 |
function wp_max_upload_size() { |
|
4178 |
$u_bytes = wp_convert_hr_to_bytes( ini_get( 'upload_max_filesize' ) ); |
|
4179 |
$p_bytes = wp_convert_hr_to_bytes( ini_get( 'post_max_size' ) ); |
|
5 | 4180 |
|
4181 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4182 |
* Filters the maximum upload size allowed in php.ini. |
5 | 4183 |
* |
4184 |
* @since 2.5.0 |
|
4185 |
* |
|
4186 |
* @param int $size Max upload size limit in bytes. |
|
4187 |
* @param int $u_bytes Maximum upload filesize in bytes. |
|
4188 |
* @param int $p_bytes Maximum size of POST data in bytes. |
|
4189 |
*/ |
|
4190 |
return apply_filters( 'upload_size_limit', min( $u_bytes, $p_bytes ), $u_bytes, $p_bytes ); |
|
0 | 4191 |
} |
4192 |
||
4193 |
/** |
|
4194 |
* Returns a WP_Image_Editor instance and loads file into it. |
|
4195 |
* |
|
4196 |
* @since 3.5.0 |
|
4197 |
* |
|
5 | 4198 |
* @param string $path Path to the file to load. |
4199 |
* @param array $args Optional. Additional arguments for retrieving the image editor. |
|
4200 |
* Default empty array. |
|
18 | 4201 |
* @return WP_Image_Editor|WP_Error The WP_Image_Editor object on success, |
4202 |
* a WP_Error object otherwise. |
|
0 | 4203 |
*/ |
4204 |
function wp_get_image_editor( $path, $args = array() ) { |
|
4205 |
$args['path'] = $path; |
|
4206 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4207 |
// If the mime type is not set in args, try to extract and set it from the file. |
0 | 4208 |
if ( ! isset( $args['mime_type'] ) ) { |
4209 |
$file_info = wp_check_filetype( $args['path'] ); |
|
4210 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4211 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4212 |
* If $file_info['type'] is false, then we let the editor attempt to |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4213 |
* figure out the file type, rather than forcing a failure based on extension. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4214 |
*/ |
9 | 4215 |
if ( isset( $file_info ) && $file_info['type'] ) { |
0 | 4216 |
$args['mime_type'] = $file_info['type']; |
9 | 4217 |
} |
0 | 4218 |
} |
4219 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4220 |
// Check and set the output mime type mapped to the input type. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4221 |
if ( isset( $args['mime_type'] ) ) { |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4222 |
$output_format = wp_get_image_editor_output_format( $path, $args['mime_type'] ); |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4223 |
if ( isset( $output_format[ $args['mime_type'] ] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4224 |
$args['output_mime_type'] = $output_format[ $args['mime_type'] ]; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4225 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4226 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4227 |
|
0 | 4228 |
$implementation = _wp_image_editor_choose( $args ); |
4229 |
||
4230 |
if ( $implementation ) { |
|
4231 |
$editor = new $implementation( $path ); |
|
4232 |
$loaded = $editor->load(); |
|
4233 |
||
9 | 4234 |
if ( is_wp_error( $loaded ) ) { |
0 | 4235 |
return $loaded; |
9 | 4236 |
} |
0 | 4237 |
|
4238 |
return $editor; |
|
4239 |
} |
|
4240 |
||
9 | 4241 |
return new WP_Error( 'image_no_editor', __( 'No editor could be selected.' ) ); |
0 | 4242 |
} |
4243 |
||
4244 |
/** |
|
4245 |
* Tests whether there is an editor that supports a given mime type or methods. |
|
4246 |
* |
|
4247 |
* @since 3.5.0 |
|
4248 |
* |
|
5 | 4249 |
* @param string|array $args Optional. Array of arguments to retrieve the image editor supports. |
4250 |
* Default empty array. |
|
4251 |
* @return bool True if an eligible editor is found; false otherwise. |
|
0 | 4252 |
*/ |
4253 |
function wp_image_editor_supports( $args = array() ) { |
|
4254 |
return (bool) _wp_image_editor_choose( $args ); |
|
4255 |
} |
|
4256 |
||
4257 |
/** |
|
4258 |
* Tests which editors are capable of supporting the request. |
|
4259 |
* |
|
5 | 4260 |
* @ignore |
0 | 4261 |
* @since 3.5.0 |
4262 |
* |
|
5 | 4263 |
* @param array $args Optional. Array of arguments for choosing a capable editor. Default empty array. |
18 | 4264 |
* @return string|false Class name for the first editor that claims to support the request. |
4265 |
* False if no editor claims to support the request. |
|
0 | 4266 |
*/ |
4267 |
function _wp_image_editor_choose( $args = array() ) { |
|
4268 |
require_once ABSPATH . WPINC . '/class-wp-image-editor.php'; |
|
4269 |
require_once ABSPATH . WPINC . '/class-wp-image-editor-gd.php'; |
|
4270 |
require_once ABSPATH . WPINC . '/class-wp-image-editor-imagick.php'; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4271 |
require_once ABSPATH . WPINC . '/class-avif-info.php'; |
5 | 4272 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4273 |
* Filters the list of image editing library classes. |
5 | 4274 |
* |
4275 |
* @since 3.5.0 |
|
4276 |
* |
|
16 | 4277 |
* @param string[] $image_editors Array of available image editor class names. Defaults are |
4278 |
* 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD'. |
|
5 | 4279 |
*/ |
4280 |
$implementations = apply_filters( 'wp_image_editors', array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' ) ); |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4281 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4282 |
$editors = wp_cache_get( 'wp_image_editor_choose', 'image_editor' ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4283 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4284 |
if ( ! is_array( $editors ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4285 |
$editors = array(); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4286 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4287 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4288 |
// Cache the chosen editor implementation based on specific args and available implementations. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4289 |
$cache_key = md5( serialize( array( $args, $implementations ) ) ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4290 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4291 |
if ( isset( $editors[ $cache_key ] ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4292 |
return $editors[ $cache_key ]; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4293 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4294 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4295 |
// Assume no support until a capable implementation is identified. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4296 |
$editor = false; |
0 | 4297 |
|
4298 |
foreach ( $implementations as $implementation ) { |
|
9 | 4299 |
if ( ! call_user_func( array( $implementation, 'test' ), $args ) ) { |
0 | 4300 |
continue; |
9 | 4301 |
} |
0 | 4302 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4303 |
// Implementation should support the passed mime type. |
0 | 4304 |
if ( isset( $args['mime_type'] ) && |
4305 |
! call_user_func( |
|
4306 |
array( $implementation, 'supports_mime_type' ), |
|
9 | 4307 |
$args['mime_type'] |
4308 |
) ) { |
|
0 | 4309 |
continue; |
4310 |
} |
|
4311 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4312 |
// Implementation should support requested methods. |
0 | 4313 |
if ( isset( $args['methods'] ) && |
9 | 4314 |
array_diff( $args['methods'], get_class_methods( $implementation ) ) ) { |
4315 |
||
0 | 4316 |
continue; |
4317 |
} |
|
4318 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4319 |
// Implementation should ideally support the output mime type as well if set and different than the passed type. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4320 |
if ( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4321 |
isset( $args['mime_type'] ) && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4322 |
isset( $args['output_mime_type'] ) && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4323 |
$args['mime_type'] !== $args['output_mime_type'] && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4324 |
! call_user_func( array( $implementation, 'supports_mime_type' ), $args['output_mime_type'] ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4325 |
) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4326 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4327 |
* This implementation supports the input type but not the output type. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4328 |
* Keep looking to see if we can find an implementation that supports both. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4329 |
*/ |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4330 |
$editor = $implementation; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4331 |
continue; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4332 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4333 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4334 |
// Favor the implementation that supports both input and output mime types. |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4335 |
$editor = $implementation; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4336 |
break; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4337 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4338 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4339 |
$editors[ $cache_key ] = $editor; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4340 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4341 |
wp_cache_set( 'wp_image_editor_choose', $editors, 'image_editor', DAY_IN_SECONDS ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4342 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4343 |
return $editor; |
0 | 4344 |
} |
4345 |
||
4346 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4347 |
* Prints default Plupload arguments. |
0 | 4348 |
* |
4349 |
* @since 3.4.0 |
|
4350 |
*/ |
|
4351 |
function wp_plupload_default_settings() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4352 |
$wp_scripts = wp_scripts(); |
0 | 4353 |
|
4354 |
$data = $wp_scripts->get_data( 'wp-plupload', 'data' ); |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4355 |
if ( $data && str_contains( $data, '_wpPluploadSettings' ) ) { |
0 | 4356 |
return; |
9 | 4357 |
} |
4358 |
||
4359 |
$max_upload_size = wp_max_upload_size(); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4360 |
$allowed_extensions = array_keys( get_allowed_mime_types() ); |
9 | 4361 |
$extensions = array(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4362 |
foreach ( $allowed_extensions as $extension ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4363 |
$extensions = array_merge( $extensions, explode( '|', $extension ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4364 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4365 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4366 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4367 |
* Since 4.9 the `runtimes` setting is hardcoded in our version of Plupload to `html5,html4`, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4368 |
* and the `flash_swf_url` and `silverlight_xap_url` are not used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4369 |
*/ |
0 | 4370 |
$defaults = array( |
16 | 4371 |
'file_data_name' => 'async-upload', // Key passed to $_FILE. |
9 | 4372 |
'url' => admin_url( 'async-upload.php', 'relative' ), |
4373 |
'filters' => array( |
|
4374 |
'max_file_size' => $max_upload_size . 'b', |
|
4375 |
'mime_types' => array( array( 'extensions' => implode( ',', $extensions ) ) ), |
|
5 | 4376 |
), |
0 | 4377 |
); |
4378 |
||
16 | 4379 |
/* |
4380 |
* Currently only iOS Safari supports multiple files uploading, |
|
4381 |
* but iOS 7.x has a bug that prevents uploading of videos when enabled. |
|
4382 |
* See #29602. |
|
4383 |
*/ |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4384 |
if ( wp_is_mobile() |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4385 |
&& str_contains( $_SERVER['HTTP_USER_AGENT'], 'OS 7_' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4386 |
&& str_contains( $_SERVER['HTTP_USER_AGENT'], 'like Mac OS X' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4387 |
) { |
0 | 4388 |
$defaults['multi_selection'] = false; |
5 | 4389 |
} |
4390 |
||
18 | 4391 |
// Check if WebP images can be edited. |
4392 |
if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/webp' ) ) ) { |
|
4393 |
$defaults['webp_upload_error'] = true; |
|
4394 |
} |
|
4395 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4396 |
// Check if AVIF images can be edited. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4397 |
if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/avif' ) ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4398 |
$defaults['avif_upload_error'] = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4399 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4400 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4401 |
// Check if HEIC images can be edited. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4402 |
if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/heic' ) ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4403 |
$defaults['heic_upload_error'] = true; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4404 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
4405 |
|
5 | 4406 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4407 |
* Filters the Plupload default settings. |
5 | 4408 |
* |
4409 |
* @since 3.4.0 |
|
4410 |
* |
|
4411 |
* @param array $defaults Default Plupload settings array. |
|
4412 |
*/ |
|
0 | 4413 |
$defaults = apply_filters( 'plupload_default_settings', $defaults ); |
4414 |
||
4415 |
$params = array( |
|
4416 |
'action' => 'upload-attachment', |
|
4417 |
); |
|
4418 |
||
5 | 4419 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4420 |
* Filters the Plupload default parameters. |
5 | 4421 |
* |
4422 |
* @since 3.4.0 |
|
4423 |
* |
|
4424 |
* @param array $params Default Plupload parameters array. |
|
4425 |
*/ |
|
16 | 4426 |
$params = apply_filters( 'plupload_default_params', $params ); |
4427 |
||
4428 |
$params['_wpnonce'] = wp_create_nonce( 'media-form' ); |
|
4429 |
||
0 | 4430 |
$defaults['multipart_params'] = $params; |
4431 |
||
4432 |
$settings = array( |
|
9 | 4433 |
'defaults' => $defaults, |
4434 |
'browser' => array( |
|
0 | 4435 |
'mobile' => wp_is_mobile(), |
4436 |
'supported' => _device_can_upload(), |
|
4437 |
), |
|
9 | 4438 |
'limitExceeded' => is_multisite() && ! is_upload_space_available(), |
0 | 4439 |
); |
4440 |
||
5 | 4441 |
$script = 'var _wpPluploadSettings = ' . wp_json_encode( $settings ) . ';'; |
0 | 4442 |
|
9 | 4443 |
if ( $data ) { |
0 | 4444 |
$script = "$data\n$script"; |
9 | 4445 |
} |
0 | 4446 |
|
4447 |
$wp_scripts->add_data( 'wp-plupload', 'data', $script ); |
|
4448 |
} |
|
4449 |
||
4450 |
/** |
|
4451 |
* Prepares an attachment post object for JS, where it is expected |
|
4452 |
* to be JSON-encoded and fit into an Attachment model. |
|
4453 |
* |
|
4454 |
* @since 3.5.0 |
|
4455 |
* |
|
9 | 4456 |
* @param int|WP_Post $attachment Attachment ID or object. |
18 | 4457 |
* @return array|void { |
4458 |
* Array of attachment details, or void if the parameter does not correspond to an attachment. |
|
4459 |
* |
|
4460 |
* @type string $alt Alt text of the attachment. |
|
4461 |
* @type string $author ID of the attachment author, as a string. |
|
4462 |
* @type string $authorName Name of the attachment author. |
|
4463 |
* @type string $caption Caption for the attachment. |
|
4464 |
* @type array $compat Containing item and meta. |
|
4465 |
* @type string $context Context, whether it's used as the site icon for example. |
|
4466 |
* @type int $date Uploaded date, timestamp in milliseconds. |
|
4467 |
* @type string $dateFormatted Formatted date (e.g. June 29, 2018). |
|
4468 |
* @type string $description Description of the attachment. |
|
4469 |
* @type string $editLink URL to the edit page for the attachment. |
|
4470 |
* @type string $filename File name of the attachment. |
|
4471 |
* @type string $filesizeHumanReadable Filesize of the attachment in human readable format (e.g. 1 MB). |
|
4472 |
* @type int $filesizeInBytes Filesize of the attachment in bytes. |
|
4473 |
* @type int $height If the attachment is an image, represents the height of the image in pixels. |
|
4474 |
* @type string $icon Icon URL of the attachment (e.g. /wp-includes/images/media/archive.png). |
|
4475 |
* @type int $id ID of the attachment. |
|
4476 |
* @type string $link URL to the attachment. |
|
4477 |
* @type int $menuOrder Menu order of the attachment post. |
|
4478 |
* @type array $meta Meta data for the attachment. |
|
4479 |
* @type string $mime Mime type of the attachment (e.g. image/jpeg or application/zip). |
|
4480 |
* @type int $modified Last modified, timestamp in milliseconds. |
|
4481 |
* @type string $name Name, same as title of the attachment. |
|
4482 |
* @type array $nonces Nonces for update, delete and edit. |
|
4483 |
* @type string $orientation If the attachment is an image, represents the image orientation |
|
4484 |
* (landscape or portrait). |
|
4485 |
* @type array $sizes If the attachment is an image, contains an array of arrays |
|
4486 |
* for the images sizes: thumbnail, medium, large, and full. |
|
4487 |
* @type string $status Post status of the attachment (usually 'inherit'). |
|
4488 |
* @type string $subtype Mime subtype of the attachment (usually the last part, e.g. jpeg or zip). |
|
4489 |
* @type string $title Title of the attachment (usually slugified file name without the extension). |
|
4490 |
* @type string $type Type of the attachment (usually first part of the mime type, e.g. image). |
|
4491 |
* @type int $uploadedTo Parent post to which the attachment was uploaded. |
|
4492 |
* @type string $uploadedToLink URL to the edit page of the parent post of the attachment. |
|
4493 |
* @type string $uploadedToTitle Post title of the parent of the attachment. |
|
4494 |
* @type string $url Direct URL to the attachment file (from wp-content). |
|
4495 |
* @type int $width If the attachment is an image, represents the width of the image in pixels. |
|
4496 |
* } |
|
0 | 4497 |
*/ |
4498 |
function wp_prepare_attachment_for_js( $attachment ) { |
|
16 | 4499 |
$attachment = get_post( $attachment ); |
4500 |
||
4501 |
if ( ! $attachment ) { |
|
0 | 4502 |
return; |
9 | 4503 |
} |
4504 |
||
16 | 4505 |
if ( 'attachment' !== $attachment->post_type ) { |
0 | 4506 |
return; |
9 | 4507 |
} |
0 | 4508 |
|
4509 |
$meta = wp_get_attachment_metadata( $attachment->ID ); |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4510 |
if ( str_contains( $attachment->post_mime_type, '/' ) ) { |
0 | 4511 |
list( $type, $subtype ) = explode( '/', $attachment->post_mime_type ); |
9 | 4512 |
} else { |
0 | 4513 |
list( $type, $subtype ) = array( $attachment->post_mime_type, '' ); |
9 | 4514 |
} |
0 | 4515 |
|
4516 |
$attachment_url = wp_get_attachment_url( $attachment->ID ); |
|
9 | 4517 |
$base_url = str_replace( wp_basename( $attachment_url ), '', $attachment_url ); |
0 | 4518 |
|
4519 |
$response = array( |
|
9 | 4520 |
'id' => $attachment->ID, |
4521 |
'title' => $attachment->post_title, |
|
4522 |
'filename' => wp_basename( get_attached_file( $attachment->ID ) ), |
|
4523 |
'url' => $attachment_url, |
|
4524 |
'link' => get_attachment_link( $attachment->ID ), |
|
4525 |
'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ), |
|
4526 |
'author' => $attachment->post_author, |
|
4527 |
'description' => $attachment->post_content, |
|
4528 |
'caption' => $attachment->post_excerpt, |
|
4529 |
'name' => $attachment->post_name, |
|
4530 |
'status' => $attachment->post_status, |
|
4531 |
'uploadedTo' => $attachment->post_parent, |
|
4532 |
'date' => strtotime( $attachment->post_date_gmt ) * 1000, |
|
4533 |
'modified' => strtotime( $attachment->post_modified_gmt ) * 1000, |
|
4534 |
'menuOrder' => $attachment->menu_order, |
|
4535 |
'mime' => $attachment->post_mime_type, |
|
4536 |
'type' => $type, |
|
4537 |
'subtype' => $subtype, |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4538 |
'icon' => wp_mime_type_icon( $attachment->ID, '.svg' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4539 |
'dateFormatted' => mysql2date( __( 'F j, Y' ), $attachment->post_date ), |
9 | 4540 |
'nonces' => array( |
0 | 4541 |
'update' => false, |
4542 |
'delete' => false, |
|
9 | 4543 |
'edit' => false, |
0 | 4544 |
), |
9 | 4545 |
'editLink' => false, |
4546 |
'meta' => false, |
|
0 | 4547 |
); |
4548 |
||
5 | 4549 |
$author = new WP_User( $attachment->post_author ); |
18 | 4550 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4551 |
if ( $author->exists() ) { |
18 | 4552 |
$author_name = $author->display_name ? $author->display_name : $author->nickname; |
4553 |
$response['authorName'] = html_entity_decode( $author_name, ENT_QUOTES, get_bloginfo( 'charset' ) ); |
|
4554 |
$response['authorLink'] = get_edit_user_link( $author->ID ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4555 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4556 |
$response['authorName'] = __( '(no author)' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4557 |
} |
5 | 4558 |
|
4559 |
if ( $attachment->post_parent ) { |
|
4560 |
$post_parent = get_post( $attachment->post_parent ); |
|
18 | 4561 |
if ( $post_parent ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4562 |
$response['uploadedToTitle'] = $post_parent->post_title ? $post_parent->post_title : __( '(no title)' ); |
18 | 4563 |
$response['uploadedToLink'] = get_edit_post_link( $attachment->post_parent, 'raw' ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4564 |
} |
5 | 4565 |
} |
4566 |
||
4567 |
$attached_file = get_attached_file( $attachment->ID ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4568 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4569 |
if ( isset( $meta['filesize'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4570 |
$bytes = $meta['filesize']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4571 |
} elseif ( file_exists( $attached_file ) ) { |
19 | 4572 |
$bytes = wp_filesize( $attached_file ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4573 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4574 |
$bytes = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4575 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4576 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4577 |
if ( $bytes ) { |
9 | 4578 |
$response['filesizeInBytes'] = $bytes; |
5 | 4579 |
$response['filesizeHumanReadable'] = size_format( $bytes ); |
4580 |
} |
|
4581 |
||
9 | 4582 |
$context = get_post_meta( $attachment->ID, '_wp_attachment_context', true ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4583 |
$response['context'] = ( $context ) ? $context : ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4584 |
|
0 | 4585 |
if ( current_user_can( 'edit_post', $attachment->ID ) ) { |
4586 |
$response['nonces']['update'] = wp_create_nonce( 'update-post_' . $attachment->ID ); |
|
9 | 4587 |
$response['nonces']['edit'] = wp_create_nonce( 'image_editor-' . $attachment->ID ); |
4588 |
$response['editLink'] = get_edit_post_link( $attachment->ID, 'raw' ); |
|
0 | 4589 |
} |
4590 |
||
9 | 4591 |
if ( current_user_can( 'delete_post', $attachment->ID ) ) { |
0 | 4592 |
$response['nonces']['delete'] = wp_create_nonce( 'delete-post_' . $attachment->ID ); |
9 | 4593 |
} |
0 | 4594 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4595 |
if ( $meta && ( 'image' === $type || ! empty( $meta['sizes'] ) ) ) { |
0 | 4596 |
$sizes = array(); |
5 | 4597 |
|
0 | 4598 |
/** This filter is documented in wp-admin/includes/media.php */ |
9 | 4599 |
$possible_sizes = apply_filters( |
4600 |
'image_size_names_choose', |
|
4601 |
array( |
|
4602 |
'thumbnail' => __( 'Thumbnail' ), |
|
4603 |
'medium' => __( 'Medium' ), |
|
4604 |
'large' => __( 'Large' ), |
|
4605 |
'full' => __( 'Full Size' ), |
|
4606 |
) |
|
4607 |
); |
|
0 | 4608 |
unset( $possible_sizes['full'] ); |
4609 |
||
16 | 4610 |
/* |
4611 |
* Loop through all potential sizes that may be chosen. Try to do this with some efficiency. |
|
4612 |
* First: run the image_downsize filter. If it returns something, we can use its data. |
|
4613 |
* If the filter does not return something, then image_downsize() is just an expensive way |
|
4614 |
* to check the image metadata, which we do second. |
|
4615 |
*/ |
|
0 | 4616 |
foreach ( $possible_sizes as $size => $label ) { |
5 | 4617 |
|
4618 |
/** This filter is documented in wp-includes/media.php */ |
|
16 | 4619 |
$downsize = apply_filters( 'image_downsize', false, $attachment->ID, $size ); |
4620 |
||
4621 |
if ( $downsize ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4622 |
if ( empty( $downsize[3] ) ) { |
0 | 4623 |
continue; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4624 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4625 |
|
0 | 4626 |
$sizes[ $size ] = array( |
4627 |
'height' => $downsize[2], |
|
4628 |
'width' => $downsize[1], |
|
4629 |
'url' => $downsize[0], |
|
4630 |
'orientation' => $downsize[2] > $downsize[1] ? 'portrait' : 'landscape', |
|
4631 |
); |
|
4632 |
} elseif ( isset( $meta['sizes'][ $size ] ) ) { |
|
4633 |
// Nothing from the filter, so consult image metadata if we have it. |
|
4634 |
$size_meta = $meta['sizes'][ $size ]; |
|
4635 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4636 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4637 |
* We have the actual image size, but might need to further constrain it if content_width is narrower. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4638 |
* Thumbnail, medium, and full sizes are also checked against the site's height/width options. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4639 |
*/ |
0 | 4640 |
list( $width, $height ) = image_constrain_size_for_editor( $size_meta['width'], $size_meta['height'], $size, 'edit' ); |
4641 |
||
4642 |
$sizes[ $size ] = array( |
|
4643 |
'height' => $height, |
|
4644 |
'width' => $width, |
|
4645 |
'url' => $base_url . $size_meta['file'], |
|
4646 |
'orientation' => $height > $width ? 'portrait' : 'landscape', |
|
4647 |
); |
|
4648 |
} |
|
4649 |
} |
|
4650 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4651 |
if ( 'image' === $type ) { |
16 | 4652 |
if ( ! empty( $meta['original_image'] ) ) { |
4653 |
$response['originalImageURL'] = wp_get_original_image_url( $attachment->ID ); |
|
4654 |
$response['originalImageName'] = wp_basename( wp_get_original_image_path( $attachment->ID ) ); |
|
4655 |
} |
|
4656 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4657 |
$sizes['full'] = array( 'url' => $attachment_url ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4658 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4659 |
if ( isset( $meta['height'], $meta['width'] ) ) { |
9 | 4660 |
$sizes['full']['height'] = $meta['height']; |
4661 |
$sizes['full']['width'] = $meta['width']; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4662 |
$sizes['full']['orientation'] = $meta['height'] > $meta['width'] ? 'portrait' : 'landscape'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4663 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4664 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4665 |
$response = array_merge( $response, $sizes['full'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4666 |
} elseif ( $meta['sizes']['full']['file'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4667 |
$sizes['full'] = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4668 |
'url' => $base_url . $meta['sizes']['full']['file'], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4669 |
'height' => $meta['sizes']['full']['height'], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4670 |
'width' => $meta['sizes']['full']['width'], |
9 | 4671 |
'orientation' => $meta['sizes']['full']['height'] > $meta['sizes']['full']['width'] ? 'portrait' : 'landscape', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4672 |
); |
0 | 4673 |
} |
4674 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4675 |
$response = array_merge( $response, array( 'sizes' => $sizes ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4676 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4677 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4678 |
if ( $meta && 'video' === $type ) { |
9 | 4679 |
if ( isset( $meta['width'] ) ) { |
0 | 4680 |
$response['width'] = (int) $meta['width']; |
9 | 4681 |
} |
4682 |
if ( isset( $meta['height'] ) ) { |
|
0 | 4683 |
$response['height'] = (int) $meta['height']; |
9 | 4684 |
} |
0 | 4685 |
} |
4686 |
||
4687 |
if ( $meta && ( 'audio' === $type || 'video' === $type ) ) { |
|
9 | 4688 |
if ( isset( $meta['length_formatted'] ) ) { |
4689 |
$response['fileLength'] = $meta['length_formatted']; |
|
4690 |
$response['fileLengthHumanReadable'] = human_readable_duration( $meta['length_formatted'] ); |
|
4691 |
} |
|
5 | 4692 |
|
4693 |
$response['meta'] = array(); |
|
4694 |
foreach ( wp_get_attachment_id3_keys( $attachment, 'js' ) as $key => $label ) { |
|
4695 |
$response['meta'][ $key ] = false; |
|
4696 |
||
4697 |
if ( ! empty( $meta[ $key ] ) ) { |
|
4698 |
$response['meta'][ $key ] = $meta[ $key ]; |
|
4699 |
} |
|
4700 |
} |
|
4701 |
||
4702 |
$id = get_post_thumbnail_id( $attachment->ID ); |
|
4703 |
if ( ! empty( $id ) ) { |
|
4704 |
list( $src, $width, $height ) = wp_get_attachment_image_src( $id, 'full' ); |
|
9 | 4705 |
$response['image'] = compact( 'src', 'width', 'height' ); |
5 | 4706 |
list( $src, $width, $height ) = wp_get_attachment_image_src( $id, 'thumbnail' ); |
9 | 4707 |
$response['thumb'] = compact( 'src', 'width', 'height' ); |
5 | 4708 |
} else { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4709 |
$src = wp_mime_type_icon( $attachment->ID, '.svg' ); |
9 | 4710 |
$width = 48; |
4711 |
$height = 64; |
|
5 | 4712 |
$response['image'] = compact( 'src', 'width', 'height' ); |
4713 |
$response['thumb'] = compact( 'src', 'width', 'height' ); |
|
4714 |
} |
|
0 | 4715 |
} |
4716 |
||
9 | 4717 |
if ( function_exists( 'get_compat_media_markup' ) ) { |
0 | 4718 |
$response['compat'] = get_compat_media_markup( $attachment->ID, array( 'in_modal' => true ) ); |
9 | 4719 |
} |
0 | 4720 |
|
18 | 4721 |
if ( function_exists( 'get_media_states' ) ) { |
4722 |
$media_states = get_media_states( $attachment ); |
|
4723 |
if ( ! empty( $media_states ) ) { |
|
4724 |
$response['mediaStates'] = implode( ', ', $media_states ); |
|
4725 |
} |
|
4726 |
} |
|
4727 |
||
5 | 4728 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4729 |
* Filters the attachment data prepared for JavaScript. |
5 | 4730 |
* |
4731 |
* @since 3.5.0 |
|
4732 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4733 |
* @param array $response Array of prepared attachment data. See {@see wp_prepare_attachment_for_js()}. |
9 | 4734 |
* @param WP_Post $attachment Attachment object. |
4735 |
* @param array|false $meta Array of attachment meta data, or false if there is none. |
|
5 | 4736 |
*/ |
0 | 4737 |
return apply_filters( 'wp_prepare_attachment_for_js', $response, $attachment, $meta ); |
4738 |
} |
|
4739 |
||
4740 |
/** |
|
4741 |
* Enqueues all scripts, styles, settings, and templates necessary to use |
|
4742 |
* all media JS APIs. |
|
4743 |
* |
|
4744 |
* @since 3.5.0 |
|
5 | 4745 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4746 |
* @global int $content_width |
16 | 4747 |
* @global wpdb $wpdb WordPress database abstraction object. |
4748 |
* @global WP_Locale $wp_locale WordPress date and time locale object. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4749 |
* |
5 | 4750 |
* @param array $args { |
4751 |
* Arguments for enqueuing media scripts. |
|
4752 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4753 |
* @type int|WP_Post $post Post ID or post object. |
5 | 4754 |
* } |
0 | 4755 |
*/ |
4756 |
function wp_enqueue_media( $args = array() ) { |
|
4757 |
// Enqueue me just once per page, please. |
|
9 | 4758 |
if ( did_action( 'wp_enqueue_media' ) ) { |
0 | 4759 |
return; |
9 | 4760 |
} |
0 | 4761 |
|
5 | 4762 |
global $content_width, $wpdb, $wp_locale; |
4763 |
||
0 | 4764 |
$defaults = array( |
4765 |
'post' => null, |
|
4766 |
); |
|
9 | 4767 |
$args = wp_parse_args( $args, $defaults ); |
0 | 4768 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4769 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4770 |
* We're going to pass the old thickbox media tabs to `media_upload_tabs` |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4771 |
* to ensure plugins will work. We will then unset those tabs. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4772 |
*/ |
0 | 4773 |
$tabs = array( |
4774 |
// handler action suffix => tab label |
|
4775 |
'type' => '', |
|
4776 |
'type_url' => '', |
|
4777 |
'gallery' => '', |
|
4778 |
'library' => '', |
|
4779 |
); |
|
4780 |
||
5 | 4781 |
/** This filter is documented in wp-admin/includes/media.php */ |
0 | 4782 |
$tabs = apply_filters( 'media_upload_tabs', $tabs ); |
4783 |
unset( $tabs['type'], $tabs['type_url'], $tabs['gallery'], $tabs['library'] ); |
|
4784 |
||
4785 |
$props = array( |
|
16 | 4786 |
'link' => get_option( 'image_default_link_type' ), // DB default is 'file'. |
4787 |
'align' => get_option( 'image_default_align' ), // Empty default. |
|
4788 |
'size' => get_option( 'image_default_size' ), // Empty default. |
|
0 | 4789 |
); |
4790 |
||
9 | 4791 |
$exts = array_merge( wp_get_audio_extensions(), wp_get_video_extensions() ); |
4792 |
$mimes = get_allowed_mime_types(); |
|
5 | 4793 |
$ext_mimes = array(); |
4794 |
foreach ( $exts as $ext ) { |
|
4795 |
foreach ( $mimes as $ext_preg => $mime_match ) { |
|
4796 |
if ( preg_match( '#' . $ext . '#i', $ext_preg ) ) { |
|
4797 |
$ext_mimes[ $ext ] = $mime_match; |
|
4798 |
break; |
|
4799 |
} |
|
4800 |
} |
|
4801 |
} |
|
4802 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4803 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4804 |
* Allows showing or hiding the "Create Audio Playlist" button in the media library. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4805 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4806 |
* By default, the "Create Audio Playlist" button will always be shown in |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4807 |
* the media library. If this filter returns `null`, a query will be run |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4808 |
* to determine whether the media library contains any audio items. This |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4809 |
* was the default behavior prior to version 4.8.0, but this query is |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4810 |
* expensive for large media libraries. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4811 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4812 |
* @since 4.7.4 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4813 |
* @since 4.8.0 The filter's default value is `true` rather than `null`. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4814 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4815 |
* @link https://core.trac.wordpress.org/ticket/31071 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4816 |
* |
16 | 4817 |
* @param bool|null $show Whether to show the button, or `null` to decide based |
4818 |
* on whether any audio files exist in the media library. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4819 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4820 |
$show_audio_playlist = apply_filters( 'media_library_show_audio_playlist', true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4821 |
if ( null === $show_audio_playlist ) { |
9 | 4822 |
$show_audio_playlist = $wpdb->get_var( |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4823 |
"SELECT ID |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4824 |
FROM $wpdb->posts |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4825 |
WHERE post_type = 'attachment' |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4826 |
AND post_mime_type LIKE 'audio%' |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4827 |
LIMIT 1" |
9 | 4828 |
); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4829 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4830 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4831 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4832 |
* Allows showing or hiding the "Create Video Playlist" button in the media library. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4833 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4834 |
* By default, the "Create Video Playlist" button will always be shown in |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4835 |
* the media library. If this filter returns `null`, a query will be run |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4836 |
* to determine whether the media library contains any video items. This |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4837 |
* was the default behavior prior to version 4.8.0, but this query is |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4838 |
* expensive for large media libraries. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4839 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4840 |
* @since 4.7.4 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4841 |
* @since 4.8.0 The filter's default value is `true` rather than `null`. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4842 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4843 |
* @link https://core.trac.wordpress.org/ticket/31071 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4844 |
* |
16 | 4845 |
* @param bool|null $show Whether to show the button, or `null` to decide based |
4846 |
* on whether any video files exist in the media library. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4847 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4848 |
$show_video_playlist = apply_filters( 'media_library_show_video_playlist', true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4849 |
if ( null === $show_video_playlist ) { |
9 | 4850 |
$show_video_playlist = $wpdb->get_var( |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4851 |
"SELECT ID |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4852 |
FROM $wpdb->posts |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4853 |
WHERE post_type = 'attachment' |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4854 |
AND post_mime_type LIKE 'video%' |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4855 |
LIMIT 1" |
9 | 4856 |
); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4857 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4858 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4859 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4860 |
* Allows overriding the list of months displayed in the media library. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4861 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4862 |
* By default (if this filter does not return an array), a query will be |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4863 |
* run to determine the months that have media items. This query can be |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4864 |
* expensive for large media libraries, so it may be desirable for sites to |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4865 |
* override this behavior. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4866 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4867 |
* @since 4.7.4 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4868 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4869 |
* @link https://core.trac.wordpress.org/ticket/31071 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4870 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4871 |
* @param stdClass[]|null $months An array of objects with `month` and `year` |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4872 |
* properties, or `null` for default behavior. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4873 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4874 |
$months = apply_filters( 'media_library_months_with_files', null ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4875 |
if ( ! is_array( $months ) ) { |
9 | 4876 |
$months = $wpdb->get_results( |
4877 |
$wpdb->prepare( |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4878 |
"SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4879 |
FROM $wpdb->posts |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4880 |
WHERE post_type = %s |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4881 |
ORDER BY post_date DESC", |
9 | 4882 |
'attachment' |
4883 |
) |
|
4884 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4885 |
} |
5 | 4886 |
foreach ( $months as $month_year ) { |
16 | 4887 |
$month_year->text = sprintf( |
4888 |
/* translators: 1: Month, 2: Year. */ |
|
4889 |
__( '%1$s %2$d' ), |
|
4890 |
$wp_locale->get_month( $month_year->month ), |
|
4891 |
$month_year->year |
|
4892 |
); |
|
5 | 4893 |
} |
4894 |
||
18 | 4895 |
/** |
4896 |
* Filters whether the Media Library grid has infinite scrolling. Default `false`. |
|
4897 |
* |
|
4898 |
* @since 5.8.0 |
|
4899 |
* |
|
4900 |
* @param bool $infinite Whether the Media Library grid has infinite scrolling. |
|
4901 |
*/ |
|
4902 |
$infinite_scrolling = apply_filters( 'media_library_infinite_scrolling', false ); |
|
4903 |
||
0 | 4904 |
$settings = array( |
18 | 4905 |
'tabs' => $tabs, |
4906 |
'tabUrl' => add_query_arg( array( 'chromeless' => true ), admin_url( 'media-upload.php' ) ), |
|
4907 |
'mimeTypes' => wp_list_pluck( get_post_mime_types(), 0 ), |
|
5 | 4908 |
/** This filter is documented in wp-admin/includes/media.php */ |
18 | 4909 |
'captions' => ! apply_filters( 'disable_captions', '' ), |
4910 |
'nonce' => array( |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4911 |
'sendToEditor' => wp_create_nonce( 'media-send-to-editor' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
4912 |
'setAttachmentThumbnail' => wp_create_nonce( 'set-attachment-thumbnail' ), |
0 | 4913 |
), |
18 | 4914 |
'post' => array( |
0 | 4915 |
'id' => 0, |
4916 |
), |
|
18 | 4917 |
'defaultProps' => $props, |
4918 |
'attachmentCounts' => array( |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4919 |
'audio' => ( $show_audio_playlist ) ? 1 : 0, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4920 |
'video' => ( $show_video_playlist ) ? 1 : 0, |
5 | 4921 |
), |
18 | 4922 |
'oEmbedProxyUrl' => rest_url( 'oembed/1.0/proxy' ), |
4923 |
'embedExts' => $exts, |
|
4924 |
'embedMimes' => $ext_mimes, |
|
4925 |
'contentWidth' => $content_width, |
|
4926 |
'months' => $months, |
|
4927 |
'mediaTrash' => MEDIA_TRASH ? 1 : 0, |
|
4928 |
'infiniteScrolling' => ( $infinite_scrolling ) ? 1 : 0, |
|
0 | 4929 |
); |
4930 |
||
4931 |
$post = null; |
|
4932 |
if ( isset( $args['post'] ) ) { |
|
9 | 4933 |
$post = get_post( $args['post'] ); |
0 | 4934 |
$settings['post'] = array( |
9 | 4935 |
'id' => $post->ID, |
0 | 4936 |
'nonce' => wp_create_nonce( 'update-post_' . $post->ID ), |
4937 |
); |
|
4938 |
||
5 | 4939 |
$thumbnail_support = current_theme_supports( 'post-thumbnails', $post->post_type ) && post_type_supports( $post->post_type, 'thumbnail' ); |
4940 |
if ( ! $thumbnail_support && 'attachment' === $post->post_type && $post->post_mime_type ) { |
|
4941 |
if ( wp_attachment_is( 'audio', $post ) ) { |
|
4942 |
$thumbnail_support = post_type_supports( 'attachment:audio', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:audio' ); |
|
4943 |
} elseif ( wp_attachment_is( 'video', $post ) ) { |
|
4944 |
$thumbnail_support = post_type_supports( 'attachment:video', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:video' ); |
|
4945 |
} |
|
4946 |
} |
|
4947 |
||
4948 |
if ( $thumbnail_support ) { |
|
9 | 4949 |
$featured_image_id = get_post_meta( $post->ID, '_thumbnail_id', true ); |
0 | 4950 |
$settings['post']['featuredImageId'] = $featured_image_id ? $featured_image_id : -1; |
4951 |
} |
|
4952 |
} |
|
4953 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4954 |
if ( $post ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4955 |
$post_type_object = get_post_type_object( $post->post_type ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4956 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4957 |
$post_type_object = get_post_type_object( 'post' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4958 |
} |
0 | 4959 |
|
4960 |
$strings = array( |
|
16 | 4961 |
// Generic. |
4962 |
'mediaFrameDefaultTitle' => __( 'Media' ), |
|
9 | 4963 |
'url' => __( 'URL' ), |
16 | 4964 |
'addMedia' => __( 'Add media' ), |
9 | 4965 |
'search' => __( 'Search' ), |
4966 |
'select' => __( 'Select' ), |
|
4967 |
'cancel' => __( 'Cancel' ), |
|
4968 |
'update' => __( 'Update' ), |
|
4969 |
'replace' => __( 'Replace' ), |
|
4970 |
'remove' => __( 'Remove' ), |
|
4971 |
'back' => __( 'Back' ), |
|
4972 |
/* |
|
4973 |
* translators: This is a would-be plural string used in the media manager. |
|
4974 |
* If there is not a word you can use in your language to avoid issues with the |
|
4975 |
* lack of plural support here, turn it into "selected: %d" then translate it. |
|
0 | 4976 |
*/ |
9 | 4977 |
'selected' => __( '%d selected' ), |
4978 |
'dragInfo' => __( 'Drag and drop to reorder media files.' ), |
|
0 | 4979 |
|
16 | 4980 |
// Upload. |
4981 |
'uploadFilesTitle' => __( 'Upload files' ), |
|
4982 |
'uploadImagesTitle' => __( 'Upload images' ), |
|
4983 |
||
4984 |
// Library. |
|
9 | 4985 |
'mediaLibraryTitle' => __( 'Media Library' ), |
16 | 4986 |
'insertMediaTitle' => __( 'Add media' ), |
9 | 4987 |
'createNewGallery' => __( 'Create a new gallery' ), |
4988 |
'createNewPlaylist' => __( 'Create a new playlist' ), |
|
4989 |
'createNewVideoPlaylist' => __( 'Create a new video playlist' ), |
|
18 | 4990 |
'returnToLibrary' => __( '← Go to library' ), |
9 | 4991 |
'allMediaItems' => __( 'All media items' ), |
4992 |
'allDates' => __( 'All dates' ), |
|
4993 |
'noItemsFound' => __( 'No items found.' ), |
|
4994 |
'insertIntoPost' => $post_type_object->labels->insert_into_item, |
|
19 | 4995 |
'unattached' => _x( 'Unattached', 'media items' ), |
9 | 4996 |
'mine' => _x( 'Mine', 'media items' ), |
4997 |
'trash' => _x( 'Trash', 'noun' ), |
|
4998 |
'uploadedToThisPost' => $post_type_object->labels->uploaded_to_this_item, |
|
4999 |
'warnDelete' => __( "You are about to permanently delete this item from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), |
|
5000 |
'warnBulkDelete' => __( "You are about to permanently delete these items from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), |
|
5001 |
'warnBulkTrash' => __( "You are about to trash these items.\n 'Cancel' to stop, 'OK' to delete." ), |
|
16 | 5002 |
'bulkSelect' => __( 'Bulk select' ), |
9 | 5003 |
'trashSelected' => __( 'Move to Trash' ), |
5004 |
'restoreSelected' => __( 'Restore from Trash' ), |
|
16 | 5005 |
'deletePermanently' => __( 'Delete permanently' ), |
19 | 5006 |
'errorDeleting' => __( 'Error in deleting the attachment.' ), |
9 | 5007 |
'apply' => __( 'Apply' ), |
5008 |
'filterByDate' => __( 'Filter by date' ), |
|
5009 |
'filterByType' => __( 'Filter by type' ), |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5010 |
'searchLabel' => __( 'Search media' ), |
16 | 5011 |
'searchMediaLabel' => __( 'Search media' ), // Backward compatibility pre-5.3. |
5012 |
'searchMediaPlaceholder' => __( 'Search media items...' ), // Placeholder (no ellipsis), backward compatibility pre-5.3. |
|
18 | 5013 |
/* translators: %d: Number of attachments found in a search. */ |
16 | 5014 |
'mediaFound' => __( 'Number of media items found: %d' ), |
5015 |
'noMedia' => __( 'No media items found.' ), |
|
5016 |
'noMediaTryNewSearch' => __( 'No media items found. Try a different search.' ), |
|
5017 |
||
5018 |
// Library Details. |
|
5019 |
'attachmentDetails' => __( 'Attachment details' ), |
|
5020 |
||
5021 |
// From URL. |
|
9 | 5022 |
'insertFromUrlTitle' => __( 'Insert from URL' ), |
0 | 5023 |
|
16 | 5024 |
// Featured Images. |
9 | 5025 |
'setFeaturedImageTitle' => $post_type_object->labels->featured_image, |
5026 |
'setFeaturedImage' => $post_type_object->labels->set_featured_image, |
|
0 | 5027 |
|
16 | 5028 |
// Gallery. |
5029 |
'createGalleryTitle' => __( 'Create gallery' ), |
|
5030 |
'editGalleryTitle' => __( 'Edit gallery' ), |
|
5031 |
'cancelGalleryTitle' => __( '← Cancel gallery' ), |
|
9 | 5032 |
'insertGallery' => __( 'Insert gallery' ), |
5033 |
'updateGallery' => __( 'Update gallery' ), |
|
5034 |
'addToGallery' => __( 'Add to gallery' ), |
|
16 | 5035 |
'addToGalleryTitle' => __( 'Add to gallery' ), |
9 | 5036 |
'reverseOrder' => __( 'Reverse order' ), |
5 | 5037 |
|
16 | 5038 |
// Edit Image. |
5039 |
'imageDetailsTitle' => __( 'Image details' ), |
|
5040 |
'imageReplaceTitle' => __( 'Replace image' ), |
|
5041 |
'imageDetailsCancel' => __( 'Cancel edit' ), |
|
5042 |
'editImage' => __( 'Edit image' ), |
|
5043 |
||
5044 |
// Crop Image. |
|
5045 |
'chooseImage' => __( 'Choose image' ), |
|
5046 |
'selectAndCrop' => __( 'Select and crop' ), |
|
5047 |
'skipCropping' => __( 'Skip cropping' ), |
|
5048 |
'cropImage' => __( 'Crop image' ), |
|
9 | 5049 |
'cropYourImage' => __( 'Crop your image' ), |
5050 |
'cropping' => __( 'Cropping…' ), |
|
16 | 5051 |
/* translators: 1: Suggested width number, 2: Suggested height number. */ |
9 | 5052 |
'suggestedDimensions' => __( 'Suggested image dimensions: %1$s by %2$s pixels.' ), |
5053 |
'cropError' => __( 'There has been an error cropping your image.' ), |
|
5 | 5054 |
|
16 | 5055 |
// Edit Audio. |
5056 |
'audioDetailsTitle' => __( 'Audio details' ), |
|
5057 |
'audioReplaceTitle' => __( 'Replace audio' ), |
|
5058 |
'audioAddSourceTitle' => __( 'Add audio source' ), |
|
5059 |
'audioDetailsCancel' => __( 'Cancel edit' ), |
|
5060 |
||
5061 |
// Edit Video. |
|
5062 |
'videoDetailsTitle' => __( 'Video details' ), |
|
5063 |
'videoReplaceTitle' => __( 'Replace video' ), |
|
5064 |
'videoAddSourceTitle' => __( 'Add video source' ), |
|
5065 |
'videoDetailsCancel' => __( 'Cancel edit' ), |
|
5066 |
'videoSelectPosterImageTitle' => __( 'Select poster image' ), |
|
5067 |
'videoAddTrackTitle' => __( 'Add subtitles' ), |
|
5068 |
||
5069 |
// Playlist. |
|
9 | 5070 |
'playlistDragInfo' => __( 'Drag and drop to reorder tracks.' ), |
16 | 5071 |
'createPlaylistTitle' => __( 'Create audio playlist' ), |
5072 |
'editPlaylistTitle' => __( 'Edit audio playlist' ), |
|
5073 |
'cancelPlaylistTitle' => __( '← Cancel audio playlist' ), |
|
9 | 5074 |
'insertPlaylist' => __( 'Insert audio playlist' ), |
5075 |
'updatePlaylist' => __( 'Update audio playlist' ), |
|
5076 |
'addToPlaylist' => __( 'Add to audio playlist' ), |
|
5077 |
'addToPlaylistTitle' => __( 'Add to Audio Playlist' ), |
|
5078 |
||
16 | 5079 |
// Video Playlist. |
9 | 5080 |
'videoPlaylistDragInfo' => __( 'Drag and drop to reorder videos.' ), |
16 | 5081 |
'createVideoPlaylistTitle' => __( 'Create video playlist' ), |
5082 |
'editVideoPlaylistTitle' => __( 'Edit video playlist' ), |
|
5083 |
'cancelVideoPlaylistTitle' => __( '← Cancel video playlist' ), |
|
9 | 5084 |
'insertVideoPlaylist' => __( 'Insert video playlist' ), |
5085 |
'updateVideoPlaylist' => __( 'Update video playlist' ), |
|
5086 |
'addToVideoPlaylist' => __( 'Add to video playlist' ), |
|
16 | 5087 |
'addToVideoPlaylistTitle' => __( 'Add to video Playlist' ), |
5088 |
||
5089 |
// Headings. |
|
5090 |
'filterAttachments' => __( 'Filter media' ), |
|
5091 |
'attachmentsList' => __( 'Media list' ), |
|
0 | 5092 |
); |
5093 |
||
5 | 5094 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5095 |
* Filters the media view settings. |
5 | 5096 |
* |
5097 |
* @since 3.5.0 |
|
5098 |
* |
|
5099 |
* @param array $settings List of media view settings. |
|
5100 |
* @param WP_Post $post Post object. |
|
5101 |
*/ |
|
0 | 5102 |
$settings = apply_filters( 'media_view_settings', $settings, $post ); |
5 | 5103 |
|
5104 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5105 |
* Filters the media view strings. |
5 | 5106 |
* |
5107 |
* @since 3.5.0 |
|
5108 |
* |
|
16 | 5109 |
* @param string[] $strings Array of media view strings keyed by the name they'll be referenced by in JavaScript. |
5110 |
* @param WP_Post $post Post object. |
|
5 | 5111 |
*/ |
9 | 5112 |
$strings = apply_filters( 'media_view_strings', $strings, $post ); |
0 | 5113 |
|
5114 |
$strings['settings'] = $settings; |
|
5115 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5116 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5117 |
* Ensure we enqueue media-editor first, that way media-views |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5118 |
* is registered internally before we try to localize it. See #24724. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5119 |
*/ |
5 | 5120 |
wp_enqueue_script( 'media-editor' ); |
0 | 5121 |
wp_localize_script( 'media-views', '_wpMediaViewsL10n', $strings ); |
5122 |
||
5 | 5123 |
wp_enqueue_script( 'media-audiovideo' ); |
0 | 5124 |
wp_enqueue_style( 'media-views' ); |
5 | 5125 |
if ( is_admin() ) { |
5126 |
wp_enqueue_script( 'mce-view' ); |
|
5127 |
wp_enqueue_script( 'image-edit' ); |
|
5128 |
} |
|
5129 |
wp_enqueue_style( 'imgareaselect' ); |
|
0 | 5130 |
wp_plupload_default_settings(); |
5131 |
||
5132 |
require_once ABSPATH . WPINC . '/media-template.php'; |
|
5133 |
add_action( 'admin_footer', 'wp_print_media_templates' ); |
|
5134 |
add_action( 'wp_footer', 'wp_print_media_templates' ); |
|
5 | 5135 |
add_action( 'customize_controls_print_footer_scripts', 'wp_print_media_templates' ); |
5136 |
||
5137 |
/** |
|
5138 |
* Fires at the conclusion of wp_enqueue_media(). |
|
5139 |
* |
|
5140 |
* @since 3.5.0 |
|
5141 |
*/ |
|
0 | 5142 |
do_action( 'wp_enqueue_media' ); |
5143 |
} |
|
5144 |
||
5145 |
/** |
|
5 | 5146 |
* Retrieves media attached to the passed post. |
0 | 5147 |
* |
5148 |
* @since 3.6.0 |
|
5149 |
* |
|
5 | 5150 |
* @param string $type Mime type. |
5151 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. |
|
16 | 5152 |
* @return WP_Post[] Array of media attached to the given post. |
0 | 5153 |
*/ |
5154 |
function get_attached_media( $type, $post = 0 ) { |
|
16 | 5155 |
$post = get_post( $post ); |
5156 |
||
5157 |
if ( ! $post ) { |
|
0 | 5158 |
return array(); |
9 | 5159 |
} |
0 | 5160 |
|
5161 |
$args = array( |
|
9 | 5162 |
'post_parent' => $post->ID, |
5163 |
'post_type' => 'attachment', |
|
0 | 5164 |
'post_mime_type' => $type, |
5165 |
'posts_per_page' => -1, |
|
9 | 5166 |
'orderby' => 'menu_order', |
5167 |
'order' => 'ASC', |
|
0 | 5168 |
); |
5169 |
||
5 | 5170 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5171 |
* Filters arguments used to retrieve media attached to the given post. |
5 | 5172 |
* |
5173 |
* @since 3.6.0 |
|
5174 |
* |
|
16 | 5175 |
* @param array $args Post query arguments. |
5176 |
* @param string $type Mime type of the desired media. |
|
5177 |
* @param WP_Post $post Post object. |
|
5 | 5178 |
*/ |
0 | 5179 |
$args = apply_filters( 'get_attached_media_args', $args, $type, $post ); |
5180 |
||
5181 |
$children = get_children( $args ); |
|
5182 |
||
5 | 5183 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5184 |
* Filters the list of media attached to the given post. |
5 | 5185 |
* |
5186 |
* @since 3.6.0 |
|
5187 |
* |
|
16 | 5188 |
* @param WP_Post[] $children Array of media attached to the given post. |
5189 |
* @param string $type Mime type of the media desired. |
|
5190 |
* @param WP_Post $post Post object. |
|
5 | 5191 |
*/ |
0 | 5192 |
return (array) apply_filters( 'get_attached_media', $children, $type, $post ); |
5193 |
} |
|
5194 |
||
5195 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5196 |
* Checks the HTML content for an audio, video, object, embed, or iframe tags. |
0 | 5197 |
* |
5198 |
* @since 3.6.0 |
|
5199 |
* |
|
16 | 5200 |
* @param string $content A string of HTML which might contain media elements. |
5201 |
* @param string[] $types An array of media types: 'audio', 'video', 'object', 'embed', or 'iframe'. |
|
5202 |
* @return string[] Array of found HTML media elements. |
|
0 | 5203 |
*/ |
5204 |
function get_media_embedded_in_content( $content, $types = null ) { |
|
5205 |
$html = array(); |
|
5 | 5206 |
|
5207 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5208 |
* Filters the embedded media types that are allowed to be returned from the content blob. |
5 | 5209 |
* |
5210 |
* @since 4.2.0 |
|
5211 |
* |
|
16 | 5212 |
* @param string[] $allowed_media_types An array of allowed media types. Default media types are |
5213 |
* 'audio', 'video', 'object', 'embed', and 'iframe'. |
|
5 | 5214 |
*/ |
5215 |
$allowed_media_types = apply_filters( 'media_embedded_in_content_allowed_types', array( 'audio', 'video', 'object', 'embed', 'iframe' ) ); |
|
5216 |
||
0 | 5217 |
if ( ! empty( $types ) ) { |
5 | 5218 |
if ( ! is_array( $types ) ) { |
0 | 5219 |
$types = array( $types ); |
5 | 5220 |
} |
5221 |
||
0 | 5222 |
$allowed_media_types = array_intersect( $allowed_media_types, $types ); |
5223 |
} |
|
5224 |
||
5 | 5225 |
$tags = implode( '|', $allowed_media_types ); |
5226 |
||
5227 |
if ( preg_match_all( '#<(?P<tag>' . $tags . ')[^<]*?(?:>[\s\S]*?<\/(?P=tag)>|\s*\/>)#', $content, $matches ) ) { |
|
5228 |
foreach ( $matches[0] as $match ) { |
|
5229 |
$html[] = $match; |
|
0 | 5230 |
} |
5231 |
} |
|
5232 |
||
5233 |
return $html; |
|
5234 |
} |
|
5235 |
||
5236 |
/** |
|
5 | 5237 |
* Retrieves galleries from the passed post's content. |
0 | 5238 |
* |
5239 |
* @since 3.6.0 |
|
5240 |
* |
|
5 | 5241 |
* @param int|WP_Post $post Post ID or object. |
5242 |
* @param bool $html Optional. Whether to return HTML or data in the array. Default true. |
|
0 | 5243 |
* @return array A list of arrays, each containing gallery data and srcs parsed |
5 | 5244 |
* from the expanded shortcode. |
0 | 5245 |
*/ |
5246 |
function get_post_galleries( $post, $html = true ) { |
|
16 | 5247 |
$post = get_post( $post ); |
5248 |
||
5249 |
if ( ! $post ) { |
|
0 | 5250 |
return array(); |
9 | 5251 |
} |
5252 |
||
19 | 5253 |
if ( ! has_shortcode( $post->post_content, 'gallery' ) && ! has_block( 'gallery', $post->post_content ) ) { |
0 | 5254 |
return array(); |
9 | 5255 |
} |
0 | 5256 |
|
5257 |
$galleries = array(); |
|
5258 |
if ( preg_match_all( '/' . get_shortcode_regex() . '/s', $post->post_content, $matches, PREG_SET_ORDER ) ) { |
|
5259 |
foreach ( $matches as $shortcode ) { |
|
5260 |
if ( 'gallery' === $shortcode[2] ) { |
|
5261 |
$srcs = array(); |
|
5262 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5263 |
$shortcode_attrs = shortcode_parse_atts( $shortcode[3] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5264 |
|
16 | 5265 |
// Specify the post ID of the gallery we're viewing if the shortcode doesn't reference another post already. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5266 |
if ( ! isset( $shortcode_attrs['id'] ) ) { |
18 | 5267 |
$shortcode[3] .= ' id="' . (int) $post->ID . '"'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5268 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5269 |
|
0 | 5270 |
$gallery = do_shortcode_tag( $shortcode ); |
5271 |
if ( $html ) { |
|
5272 |
$galleries[] = $gallery; |
|
5273 |
} else { |
|
5274 |
preg_match_all( '#src=([\'"])(.+?)\1#is', $gallery, $src, PREG_SET_ORDER ); |
|
5275 |
if ( ! empty( $src ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5276 |
foreach ( $src as $s ) { |
0 | 5277 |
$srcs[] = $s[2]; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5278 |
} |
0 | 5279 |
} |
5280 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5281 |
$galleries[] = array_merge( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5282 |
$shortcode_attrs, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5283 |
array( |
9 | 5284 |
'src' => array_values( array_unique( $srcs ) ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5285 |
) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5286 |
); |
0 | 5287 |
} |
5288 |
} |
|
5289 |
} |
|
5290 |
} |
|
5291 |
||
19 | 5292 |
if ( has_block( 'gallery', $post->post_content ) ) { |
5293 |
$post_blocks = parse_blocks( $post->post_content ); |
|
5294 |
||
5295 |
while ( $block = array_shift( $post_blocks ) ) { |
|
5296 |
$has_inner_blocks = ! empty( $block['innerBlocks'] ); |
|
5297 |
||
5298 |
// Skip blocks with no blockName and no innerHTML. |
|
5299 |
if ( ! $block['blockName'] ) { |
|
5300 |
continue; |
|
5301 |
} |
|
5302 |
||
5303 |
// Skip non-Gallery blocks. |
|
5304 |
if ( 'core/gallery' !== $block['blockName'] ) { |
|
5305 |
// Move inner blocks into the root array before skipping. |
|
5306 |
if ( $has_inner_blocks ) { |
|
5307 |
array_push( $post_blocks, ...$block['innerBlocks'] ); |
|
5308 |
} |
|
5309 |
continue; |
|
5310 |
} |
|
5311 |
||
5312 |
// New Gallery block format as HTML. |
|
5313 |
if ( $has_inner_blocks && $html ) { |
|
5314 |
$block_html = wp_list_pluck( $block['innerBlocks'], 'innerHTML' ); |
|
5315 |
$galleries[] = '<figure>' . implode( ' ', $block_html ) . '</figure>'; |
|
5316 |
continue; |
|
5317 |
} |
|
5318 |
||
5319 |
$srcs = array(); |
|
5320 |
||
5321 |
// New Gallery block format as an array. |
|
5322 |
if ( $has_inner_blocks ) { |
|
5323 |
$attrs = wp_list_pluck( $block['innerBlocks'], 'attrs' ); |
|
5324 |
$ids = wp_list_pluck( $attrs, 'id' ); |
|
5325 |
||
5326 |
foreach ( $ids as $id ) { |
|
5327 |
$url = wp_get_attachment_url( $id ); |
|
5328 |
||
5329 |
if ( is_string( $url ) && ! in_array( $url, $srcs, true ) ) { |
|
5330 |
$srcs[] = $url; |
|
5331 |
} |
|
5332 |
} |
|
5333 |
||
5334 |
$galleries[] = array( |
|
5335 |
'ids' => implode( ',', $ids ), |
|
5336 |
'src' => $srcs, |
|
5337 |
); |
|
5338 |
||
5339 |
continue; |
|
5340 |
} |
|
5341 |
||
5342 |
// Old Gallery block format as HTML. |
|
5343 |
if ( $html ) { |
|
5344 |
$galleries[] = $block['innerHTML']; |
|
5345 |
continue; |
|
5346 |
} |
|
5347 |
||
5348 |
// Old Gallery block format as an array. |
|
5349 |
$ids = ! empty( $block['attrs']['ids'] ) ? $block['attrs']['ids'] : array(); |
|
5350 |
||
5351 |
// If present, use the image IDs from the JSON blob as canonical. |
|
5352 |
if ( ! empty( $ids ) ) { |
|
5353 |
foreach ( $ids as $id ) { |
|
5354 |
$url = wp_get_attachment_url( $id ); |
|
5355 |
||
5356 |
if ( is_string( $url ) && ! in_array( $url, $srcs, true ) ) { |
|
5357 |
$srcs[] = $url; |
|
5358 |
} |
|
5359 |
} |
|
5360 |
||
5361 |
$galleries[] = array( |
|
5362 |
'ids' => implode( ',', $ids ), |
|
5363 |
'src' => $srcs, |
|
5364 |
); |
|
5365 |
||
5366 |
continue; |
|
5367 |
} |
|
5368 |
||
5369 |
// Otherwise, extract srcs from the innerHTML. |
|
5370 |
preg_match_all( '#src=([\'"])(.+?)\1#is', $block['innerHTML'], $found_srcs, PREG_SET_ORDER ); |
|
5371 |
||
5372 |
if ( ! empty( $found_srcs[0] ) ) { |
|
5373 |
foreach ( $found_srcs as $src ) { |
|
5374 |
if ( isset( $src[2] ) && ! in_array( $src[2], $srcs, true ) ) { |
|
5375 |
$srcs[] = $src[2]; |
|
5376 |
} |
|
5377 |
} |
|
5378 |
} |
|
5379 |
||
5380 |
$galleries[] = array( 'src' => $srcs ); |
|
5381 |
} |
|
5382 |
} |
|
5383 |
||
5 | 5384 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5385 |
* Filters the list of all found galleries in the given post. |
5 | 5386 |
* |
5387 |
* @since 3.6.0 |
|
5388 |
* |
|
5389 |
* @param array $galleries Associative array of all found post galleries. |
|
5390 |
* @param WP_Post $post Post object. |
|
5391 |
*/ |
|
0 | 5392 |
return apply_filters( 'get_post_galleries', $galleries, $post ); |
5393 |
} |
|
5394 |
||
5395 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5396 |
* Checks a specified post's content for gallery and, if present, return the first |
0 | 5397 |
* |
5398 |
* @since 3.6.0 |
|
5399 |
* |
|
5 | 5400 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. |
5401 |
* @param bool $html Optional. Whether to return HTML or data. Default is true. |
|
5402 |
* @return string|array Gallery data and srcs parsed from the expanded shortcode. |
|
0 | 5403 |
*/ |
5404 |
function get_post_gallery( $post = 0, $html = true ) { |
|
5405 |
$galleries = get_post_galleries( $post, $html ); |
|
9 | 5406 |
$gallery = reset( $galleries ); |
0 | 5407 |
|
5 | 5408 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5409 |
* Filters the first-found post gallery. |
5 | 5410 |
* |
5411 |
* @since 3.6.0 |
|
5412 |
* |
|
5413 |
* @param array $gallery The first-found post gallery. |
|
5414 |
* @param int|WP_Post $post Post ID or object. |
|
5415 |
* @param array $galleries Associative array of all found post galleries. |
|
5416 |
*/ |
|
0 | 5417 |
return apply_filters( 'get_post_gallery', $gallery, $post, $galleries ); |
5418 |
} |
|
5419 |
||
5420 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5421 |
* Retrieves the image srcs from galleries from a post's content, if present. |
0 | 5422 |
* |
5423 |
* @since 3.6.0 |
|
5424 |
* |
|
5 | 5425 |
* @see get_post_galleries() |
5426 |
* |
|
5427 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. |
|
5428 |
* @return array A list of lists, each containing image srcs parsed. |
|
5429 |
* from an expanded shortcode |
|
0 | 5430 |
*/ |
5431 |
function get_post_galleries_images( $post = 0 ) { |
|
5432 |
$galleries = get_post_galleries( $post, false ); |
|
5433 |
return wp_list_pluck( $galleries, 'src' ); |
|
5434 |
} |
|
5435 |
||
5436 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5437 |
* Checks a post's content for galleries and return the image srcs for the first found gallery. |
0 | 5438 |
* |
5439 |
* @since 3.6.0 |
|
5440 |
* |
|
5 | 5441 |
* @see get_post_gallery() |
5442 |
* |
|
5443 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. |
|
16 | 5444 |
* @return string[] A list of a gallery's image srcs in order. |
0 | 5445 |
*/ |
5446 |
function get_post_gallery_images( $post = 0 ) { |
|
5447 |
$gallery = get_post_gallery( $post, false ); |
|
5448 |
return empty( $gallery['src'] ) ? array() : $gallery['src']; |
|
5449 |
} |
|
5 | 5450 |
|
5451 |
/** |
|
5452 |
* Maybe attempts to generate attachment metadata, if missing. |
|
5453 |
* |
|
5454 |
* @since 3.9.0 |
|
5455 |
* |
|
5456 |
* @param WP_Post $attachment Attachment object. |
|
5457 |
*/ |
|
5458 |
function wp_maybe_generate_attachment_metadata( $attachment ) { |
|
16 | 5459 |
if ( empty( $attachment ) || empty( $attachment->ID ) ) { |
5 | 5460 |
return; |
5461 |
} |
|
5462 |
||
16 | 5463 |
$attachment_id = (int) $attachment->ID; |
5464 |
$file = get_attached_file( $attachment_id ); |
|
5465 |
$meta = wp_get_attachment_metadata( $attachment_id ); |
|
5466 |
||
5 | 5467 |
if ( empty( $meta ) && file_exists( $file ) ) { |
16 | 5468 |
$_meta = get_post_meta( $attachment_id ); |
5469 |
$_lock = 'wp_generating_att_' . $attachment_id; |
|
5470 |
||
5471 |
if ( ! array_key_exists( '_wp_attachment_metadata', $_meta ) && ! get_transient( $_lock ) ) { |
|
5472 |
set_transient( $_lock, $file ); |
|
5 | 5473 |
wp_update_attachment_metadata( $attachment_id, wp_generate_attachment_metadata( $attachment_id, $file ) ); |
16 | 5474 |
delete_transient( $_lock ); |
5 | 5475 |
} |
5476 |
} |
|
5477 |
} |
|
5478 |
||
5479 |
/** |
|
5480 |
* Tries to convert an attachment URL into a post ID. |
|
5481 |
* |
|
5482 |
* @since 4.0.0 |
|
5483 |
* |
|
5484 |
* @global wpdb $wpdb WordPress database abstraction object. |
|
5485 |
* |
|
5486 |
* @param string $url The URL to resolve. |
|
5487 |
* @return int The found post ID, or 0 on failure. |
|
5488 |
*/ |
|
5489 |
function attachment_url_to_postid( $url ) { |
|
5490 |
global $wpdb; |
|
5491 |
||
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5492 |
/** |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5493 |
* Filters the attachment ID to allow short-circuit the function. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5494 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5495 |
* Allows plugins to short-circuit attachment ID lookups. Plugins making |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5496 |
* use of this function should return: |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5497 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5498 |
* - 0 (integer) to indicate the attachment is not found, |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5499 |
* - attachment ID (integer) to indicate the attachment ID found, |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5500 |
* - null to indicate WordPress should proceed with the lookup. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5501 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5502 |
* Warning: The post ID may be null or zero, both of which cast to a |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5503 |
* boolean false. For information about casting to booleans see the |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5504 |
* {@link https://www.php.net/manual/en/language.types.boolean.php PHP documentation}. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5505 |
* Use the === operator for testing the post ID when developing filters using |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5506 |
* this hook. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5507 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5508 |
* @since 6.7.0 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5509 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5510 |
* @param int|null $post_id The result of the post ID lookup. Null to indicate |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5511 |
* no lookup has been attempted. Default null. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5512 |
* @param string $url The URL being looked up. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5513 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5514 |
$post_id = apply_filters( 'pre_attachment_url_to_postid', null, $url ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5515 |
if ( null !== $post_id ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5516 |
return (int) $post_id; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5517 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5518 |
|
9 | 5519 |
$dir = wp_get_upload_dir(); |
5 | 5520 |
$path = $url; |
5521 |
||
9 | 5522 |
$site_url = parse_url( $dir['url'] ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5523 |
$image_path = parse_url( $path ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5524 |
|
16 | 5525 |
// Force the protocols to match if needed. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5526 |
if ( isset( $image_path['scheme'] ) && ( $image_path['scheme'] !== $site_url['scheme'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5527 |
$path = str_replace( $image_path['scheme'], $site_url['scheme'], $path ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5528 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5529 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5530 |
if ( str_starts_with( $path, $dir['baseurl'] . '/' ) ) { |
5 | 5531 |
$path = substr( $path, strlen( $dir['baseurl'] . '/' ) ); |
5532 |
} |
|
5533 |
||
16 | 5534 |
$sql = $wpdb->prepare( |
5535 |
"SELECT post_id, meta_value FROM $wpdb->postmeta WHERE meta_key = '_wp_attached_file' AND meta_value = %s", |
|
5 | 5536 |
$path |
5537 |
); |
|
16 | 5538 |
|
5539 |
$results = $wpdb->get_results( $sql ); |
|
5540 |
$post_id = null; |
|
5541 |
||
5542 |
if ( $results ) { |
|
5543 |
// Use the first available result, but prefer a case-sensitive match, if exists. |
|
5544 |
$post_id = reset( $results )->post_id; |
|
5545 |
||
5546 |
if ( count( $results ) > 1 ) { |
|
5547 |
foreach ( $results as $result ) { |
|
5548 |
if ( $path === $result->meta_value ) { |
|
5549 |
$post_id = $result->post_id; |
|
5550 |
break; |
|
5551 |
} |
|
5552 |
} |
|
5553 |
} |
|
5554 |
} |
|
5 | 5555 |
|
5556 |
/** |
|
16 | 5557 |
* Filters an attachment ID found by URL. |
5 | 5558 |
* |
5559 |
* @since 4.2.0 |
|
5560 |
* |
|
5561 |
* @param int|null $post_id The post_id (if any) found by the function. |
|
5562 |
* @param string $url The URL being looked up. |
|
5563 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5564 |
return (int) apply_filters( 'attachment_url_to_postid', $post_id, $url ); |
5 | 5565 |
} |
5566 |
||
5567 |
/** |
|
5568 |
* Returns the URLs for CSS files used in an iframe-sandbox'd TinyMCE media view. |
|
5569 |
* |
|
5570 |
* @since 4.0.0 |
|
5571 |
* |
|
16 | 5572 |
* @return string[] The relevant CSS file URLs. |
5 | 5573 |
*/ |
5574 |
function wpview_media_sandbox_styles() { |
|
9 | 5575 |
$version = 'ver=' . get_bloginfo( 'version' ); |
5576 |
$mediaelement = includes_url( "js/mediaelement/mediaelementplayer-legacy.min.css?$version" ); |
|
5577 |
$wpmediaelement = includes_url( "js/mediaelement/wp-mediaelement.css?$version" ); |
|
5 | 5578 |
|
5579 |
return array( $mediaelement, $wpmediaelement ); |
|
5580 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5581 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5582 |
/** |
16 | 5583 |
* Registers the personal data exporter for media. |
5584 |
* |
|
5585 |
* @param array[] $exporters An array of personal data exporters, keyed by their ID. |
|
5586 |
* @return array[] Updated array of personal data exporters. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5587 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5588 |
function wp_register_media_personal_data_exporter( $exporters ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5589 |
$exporters['wordpress-media'] = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5590 |
'exporter_friendly_name' => __( 'WordPress Media' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5591 |
'callback' => 'wp_media_personal_data_exporter', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5592 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5593 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5594 |
return $exporters; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5595 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5596 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5597 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5598 |
* Finds and exports attachments associated with an email address. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5599 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5600 |
* @since 4.9.6 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5601 |
* |
16 | 5602 |
* @param string $email_address The attachment owner email address. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5603 |
* @param int $page Attachment page number. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5604 |
* @return array { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5605 |
* An array of personal data. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5606 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5607 |
* @type array[] $data An array of personal data arrays. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5608 |
* @type bool $done Whether the exporter is finished. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5609 |
* } |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5610 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5611 |
function wp_media_personal_data_exporter( $email_address, $page = 1 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5612 |
// Limit us to 50 attachments at a time to avoid timing out. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5613 |
$number = 50; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5614 |
$page = (int) $page; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5615 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5616 |
$data_to_export = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5617 |
|
9 | 5618 |
$user = get_user_by( 'email', $email_address ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5619 |
if ( false === $user ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5620 |
return array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5621 |
'data' => $data_to_export, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5622 |
'done' => true, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5623 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5624 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5625 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5626 |
$post_query = new WP_Query( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5627 |
array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5628 |
'author' => $user->ID, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5629 |
'posts_per_page' => $number, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5630 |
'paged' => $page, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5631 |
'post_type' => 'attachment', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5632 |
'post_status' => 'any', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5633 |
'orderby' => 'ID', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5634 |
'order' => 'ASC', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5635 |
) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5636 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5637 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5638 |
foreach ( (array) $post_query->posts as $post ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5639 |
$attachment_url = wp_get_attachment_url( $post->ID ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5640 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5641 |
if ( $attachment_url ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5642 |
$post_data_to_export = array( |
9 | 5643 |
array( |
5644 |
'name' => __( 'URL' ), |
|
5645 |
'value' => $attachment_url, |
|
5646 |
), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5647 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5648 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5649 |
$data_to_export[] = array( |
16 | 5650 |
'group_id' => 'media', |
5651 |
'group_label' => __( 'Media' ), |
|
5652 |
'group_description' => __( 'User’s media data.' ), |
|
5653 |
'item_id' => "post-{$post->ID}", |
|
5654 |
'data' => $post_data_to_export, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5655 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5656 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5657 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5658 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5659 |
$done = $post_query->max_num_pages <= $page; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5660 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5661 |
return array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5662 |
'data' => $data_to_export, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5663 |
'done' => $done, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5664 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5665 |
} |
16 | 5666 |
|
5667 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5668 |
* Adds additional default image sub-sizes. |
16 | 5669 |
* |
5670 |
* These sizes are meant to enhance the way WordPress displays images on the front-end on larger, |
|
5671 |
* high-density devices. They make it possible to generate more suitable `srcset` and `sizes` attributes |
|
5672 |
* when the users upload large images. |
|
5673 |
* |
|
5674 |
* The sizes can be changed or removed by themes and plugins but that is not recommended. |
|
5675 |
* The size "names" reflect the image dimensions, so changing the sizes would be quite misleading. |
|
5676 |
* |
|
5677 |
* @since 5.3.0 |
|
5678 |
* @access private |
|
5679 |
*/ |
|
5680 |
function _wp_add_additional_image_sizes() { |
|
5681 |
// 2x medium_large size. |
|
5682 |
add_image_size( '1536x1536', 1536, 1536 ); |
|
5683 |
// 2x large size. |
|
5684 |
add_image_size( '2048x2048', 2048, 2048 ); |
|
5685 |
} |
|
5686 |
||
5687 |
/** |
|
5688 |
* Callback to enable showing of the user error when uploading .heic images. |
|
5689 |
* |
|
5690 |
* @since 5.5.0 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5691 |
* @since 6.7.0 The default behavior is to enable heic uploads as long as the server |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5692 |
* supports the format. The uploads are converted to JPEG's by default. |
16 | 5693 |
* |
5694 |
* @param array[] $plupload_settings The settings for Plupload.js. |
|
5695 |
* @return array[] Modified settings for Plupload.js. |
|
5696 |
*/ |
|
5697 |
function wp_show_heic_upload_error( $plupload_settings ) { |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5698 |
// Check if HEIC images can be edited. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5699 |
if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/heic' ) ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5700 |
$plupload_init['heic_upload_error'] = true; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5701 |
} |
16 | 5702 |
return $plupload_settings; |
5703 |
} |
|
18 | 5704 |
|
5705 |
/** |
|
5706 |
* Allows PHP's getimagesize() to be debuggable when necessary. |
|
5707 |
* |
|
5708 |
* @since 5.7.0 |
|
5709 |
* @since 5.8.0 Added support for WebP images. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5710 |
* @since 6.5.0 Added support for AVIF images. |
18 | 5711 |
* |
5712 |
* @param string $filename The file path. |
|
5713 |
* @param array $image_info Optional. Extended image information (passed by reference). |
|
5714 |
* @return array|false Array of image information or false on failure. |
|
5715 |
*/ |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5716 |
function wp_getimagesize( $filename, ?array &$image_info = null ) { |
18 | 5717 |
// Don't silence errors when in debug mode, unless running unit tests. |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5718 |
if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! defined( 'WP_RUN_CORE_TESTS' ) ) { |
18 | 5719 |
if ( 2 === func_num_args() ) { |
5720 |
$info = getimagesize( $filename, $image_info ); |
|
5721 |
} else { |
|
5722 |
$info = getimagesize( $filename ); |
|
5723 |
} |
|
5724 |
} else { |
|
5725 |
/* |
|
5726 |
* Silencing notice and warning is intentional. |
|
5727 |
* |
|
5728 |
* getimagesize() has a tendency to generate errors, such as |
|
5729 |
* "corrupt JPEG data: 7191 extraneous bytes before marker", |
|
5730 |
* even when it's able to provide image size information. |
|
5731 |
* |
|
5732 |
* See https://core.trac.wordpress.org/ticket/42480 |
|
5733 |
*/ |
|
5734 |
if ( 2 === func_num_args() ) { |
|
5735 |
$info = @getimagesize( $filename, $image_info ); |
|
5736 |
} else { |
|
5737 |
$info = @getimagesize( $filename ); |
|
5738 |
} |
|
5739 |
} |
|
5740 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5741 |
if ( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5742 |
! empty( $info ) && |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5743 |
// Some PHP versions return 0x0 sizes from `getimagesize` for unrecognized image formats, including AVIFs. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5744 |
! ( empty( $info[0] ) && empty( $info[1] ) ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5745 |
) { |
18 | 5746 |
return $info; |
5747 |
} |
|
5748 |
||
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5749 |
$image_mime_type = wp_get_image_mime( $filename ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5750 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5751 |
// Not an image? |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5752 |
if ( false === $image_mime_type ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5753 |
return false; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5754 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5755 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5756 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5757 |
* For PHP versions that don't support WebP images, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5758 |
* extract the image size info from the file headers. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5759 |
*/ |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5760 |
if ( 'image/webp' === $image_mime_type ) { |
18 | 5761 |
$webp_info = wp_get_webp_info( $filename ); |
5762 |
$width = $webp_info['width']; |
|
5763 |
$height = $webp_info['height']; |
|
5764 |
||
5765 |
// Mimic the native return format. |
|
5766 |
if ( $width && $height ) { |
|
5767 |
return array( |
|
5768 |
$width, |
|
5769 |
$height, |
|
19 | 5770 |
IMAGETYPE_WEBP, |
18 | 5771 |
sprintf( |
5772 |
'width="%d" height="%d"', |
|
5773 |
$width, |
|
5774 |
$height |
|
5775 |
), |
|
5776 |
'mime' => 'image/webp', |
|
5777 |
); |
|
5778 |
} |
|
5779 |
} |
|
5780 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5781 |
// For PHP versions that don't support AVIF images, extract the image size info from the file headers. |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5782 |
if ( 'image/avif' === $image_mime_type ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5783 |
$avif_info = wp_get_avif_info( $filename ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5784 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5785 |
$width = $avif_info['width']; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5786 |
$height = $avif_info['height']; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5787 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5788 |
// Mimic the native return format. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5789 |
if ( $width && $height ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5790 |
return array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5791 |
$width, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5792 |
$height, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5793 |
IMAGETYPE_AVIF, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5794 |
sprintf( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5795 |
'width="%d" height="%d"', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5796 |
$width, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5797 |
$height |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5798 |
), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5799 |
'mime' => 'image/avif', |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5800 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5801 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5802 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5803 |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5804 |
// For PHP versions that don't support HEIC images, extract the size info using Imagick when available. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5805 |
if ( wp_is_heic_image_mime_type( $image_mime_type ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5806 |
$editor = wp_get_image_editor( $filename ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5807 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5808 |
if ( is_wp_error( $editor ) ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5809 |
return false; |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5810 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5811 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5812 |
// If the editor for HEICs is Imagick, use it to get the image size. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5813 |
if ( $editor instanceof WP_Image_Editor_Imagick ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5814 |
$size = $editor->get_size(); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5815 |
return array( |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5816 |
$size['width'], |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5817 |
$size['height'], |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5818 |
IMAGETYPE_HEIC, |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5819 |
sprintf( |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5820 |
'width="%d" height="%d"', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5821 |
$size['width'], |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5822 |
$size['height'] |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5823 |
), |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5824 |
'mime' => 'image/heic', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5825 |
); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5826 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5827 |
} |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
5828 |
|
18 | 5829 |
// The image could not be parsed. |
5830 |
return false; |
|
5831 |
} |
|
5832 |
||
5833 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5834 |
* Extracts meta information about an AVIF file: width, height, bit depth, and number of channels. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5835 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5836 |
* @since 6.5.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5837 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5838 |
* @param string $filename Path to an AVIF file. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5839 |
* @return array { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5840 |
* An array of AVIF image information. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5841 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5842 |
* @type int|false $width Image width on success, false on failure. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5843 |
* @type int|false $height Image height on success, false on failure. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5844 |
* @type int|false $bit_depth Image bit depth on success, false on failure. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5845 |
* @type int|false $num_channels Image number of channels on success, false on failure. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5846 |
* } |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5847 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5848 |
function wp_get_avif_info( $filename ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5849 |
$results = array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5850 |
'width' => false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5851 |
'height' => false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5852 |
'bit_depth' => false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5853 |
'num_channels' => false, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5854 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5855 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5856 |
if ( 'image/avif' !== wp_get_image_mime( $filename ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5857 |
return $results; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5858 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5859 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5860 |
// Parse the file using libavifinfo's PHP implementation. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5861 |
require_once ABSPATH . WPINC . '/class-avif-info.php'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5862 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5863 |
$handle = fopen( $filename, 'rb' ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5864 |
if ( $handle ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5865 |
$parser = new Avifinfo\Parser( $handle ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5866 |
$success = $parser->parse_ftyp() && $parser->parse_file(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5867 |
fclose( $handle ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5868 |
if ( $success ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5869 |
$results = $parser->features->primary_item_features; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5870 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5871 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5872 |
return $results; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5873 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5874 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5875 |
/** |
19 | 5876 |
* Extracts meta information about a WebP file: width, height, and type. |
18 | 5877 |
* |
5878 |
* @since 5.8.0 |
|
5879 |
* |
|
5880 |
* @param string $filename Path to a WebP file. |
|
19 | 5881 |
* @return array { |
18 | 5882 |
* An array of WebP image information. |
5883 |
* |
|
19 | 5884 |
* @type int|false $width Image width on success, false on failure. |
5885 |
* @type int|false $height Image height on success, false on failure. |
|
5886 |
* @type string|false $type The WebP type: one of 'lossy', 'lossless' or 'animated-alpha'. |
|
5887 |
* False on failure. |
|
5888 |
* } |
|
18 | 5889 |
*/ |
5890 |
function wp_get_webp_info( $filename ) { |
|
5891 |
$width = false; |
|
5892 |
$height = false; |
|
5893 |
$type = false; |
|
5894 |
||
5895 |
if ( 'image/webp' !== wp_get_image_mime( $filename ) ) { |
|
5896 |
return compact( 'width', 'height', 'type' ); |
|
5897 |
} |
|
5898 |
||
19 | 5899 |
$magic = file_get_contents( $filename, false, null, 0, 40 ); |
5900 |
||
5901 |
if ( false === $magic ) { |
|
5902 |
return compact( 'width', 'height', 'type' ); |
|
5903 |
} |
|
5904 |
||
5905 |
// Make sure we got enough bytes. |
|
5906 |
if ( strlen( $magic ) < 40 ) { |
|
5907 |
return compact( 'width', 'height', 'type' ); |
|
5908 |
} |
|
5909 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5910 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5911 |
* The headers are a little different for each of the three formats. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5912 |
* Header values based on WebP docs, see https://developers.google.com/speed/webp/docs/riff_container. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5913 |
*/ |
19 | 5914 |
switch ( substr( $magic, 12, 4 ) ) { |
5915 |
// Lossy WebP. |
|
5916 |
case 'VP8 ': |
|
5917 |
$parts = unpack( 'v2', substr( $magic, 26, 4 ) ); |
|
5918 |
$width = (int) ( $parts[1] & 0x3FFF ); |
|
5919 |
$height = (int) ( $parts[2] & 0x3FFF ); |
|
5920 |
$type = 'lossy'; |
|
5921 |
break; |
|
5922 |
// Lossless WebP. |
|
5923 |
case 'VP8L': |
|
5924 |
$parts = unpack( 'C4', substr( $magic, 21, 4 ) ); |
|
5925 |
$width = (int) ( $parts[1] | ( ( $parts[2] & 0x3F ) << 8 ) ) + 1; |
|
5926 |
$height = (int) ( ( ( $parts[2] & 0xC0 ) >> 6 ) | ( $parts[3] << 2 ) | ( ( $parts[4] & 0x03 ) << 10 ) ) + 1; |
|
5927 |
$type = 'lossless'; |
|
5928 |
break; |
|
5929 |
// Animated/alpha WebP. |
|
5930 |
case 'VP8X': |
|
5931 |
// Pad 24-bit int. |
|
5932 |
$width = unpack( 'V', substr( $magic, 24, 3 ) . "\x00" ); |
|
5933 |
$width = (int) ( $width[1] & 0xFFFFFF ) + 1; |
|
5934 |
// Pad 24-bit int. |
|
5935 |
$height = unpack( 'V', substr( $magic, 27, 3 ) . "\x00" ); |
|
5936 |
$height = (int) ( $height[1] & 0xFFFFFF ) + 1; |
|
5937 |
$type = 'animated-alpha'; |
|
5938 |
break; |
|
18 | 5939 |
} |
5940 |
||
5941 |
return compact( 'width', 'height', 'type' ); |
|
5942 |
} |
|
19 | 5943 |
|
5944 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5945 |
* Gets loading optimization attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5946 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5947 |
* This function returns an array of attributes that should be merged into the given attributes array to optimize |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5948 |
* loading performance. Potential attributes returned by this function are: |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5949 |
* - `loading` attribute with a value of "lazy" |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5950 |
* - `fetchpriority` attribute with a value of "high" |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5951 |
* - `decoding` attribute with a value of "async" |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5952 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5953 |
* If any of these attributes are already present in the given attributes, they will not be modified. Note that no |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5954 |
* element should have both `loading="lazy"` and `fetchpriority="high"`, so the function will trigger a warning in case |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5955 |
* both attributes are present with those values. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5956 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5957 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5958 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5959 |
* @global WP_Query $wp_query WordPress Query object. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5960 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5961 |
* @param string $tag_name The tag name. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5962 |
* @param array $attr Array of the attributes for the tag. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5963 |
* @param string $context Context for the element for which the loading optimization attribute is requested. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5964 |
* @return array Loading optimization attributes. |
19 | 5965 |
*/ |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5966 |
function wp_get_loading_optimization_attributes( $tag_name, $attr, $context ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5967 |
global $wp_query; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5968 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5969 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5970 |
* Filters whether to short-circuit loading optimization attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5971 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5972 |
* Returning an array from the filter will effectively short-circuit the loading of optimization attributes, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5973 |
* returning that value instead. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5974 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5975 |
* @since 6.4.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5976 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5977 |
* @param array|false $loading_attrs False by default, or array of loading optimization attributes to short-circuit. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5978 |
* @param string $tag_name The tag name. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5979 |
* @param array $attr Array of the attributes for the tag. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5980 |
* @param string $context Context for the element for which the loading optimization attribute is requested. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5981 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5982 |
$loading_attrs = apply_filters( 'pre_wp_get_loading_optimization_attributes', false, $tag_name, $attr, $context ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5983 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5984 |
if ( is_array( $loading_attrs ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5985 |
return $loading_attrs; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5986 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5987 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5988 |
$loading_attrs = array(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5989 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5990 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5991 |
* Skip lazy-loading for the overall block template, as it is handled more granularly. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5992 |
* The skip is also applicable for `fetchpriority`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5993 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5994 |
if ( 'template' === $context ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5995 |
/** This filter is documented in wp-includes/media.php */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5996 |
return apply_filters( 'wp_get_loading_optimization_attributes', $loading_attrs, $tag_name, $attr, $context ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5997 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5998 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
5999 |
// For now this function only supports images and iframes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6000 |
if ( 'img' !== $tag_name && 'iframe' !== $tag_name ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6001 |
/** This filter is documented in wp-includes/media.php */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6002 |
return apply_filters( 'wp_get_loading_optimization_attributes', $loading_attrs, $tag_name, $attr, $context ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6003 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6004 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6005 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6006 |
* Skip programmatically created images within content blobs as they need to be handled together with the other |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6007 |
* images within the post content or widget content. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6008 |
* Without this clause, they would already be considered within their own context which skews the image count and |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6009 |
* can result in the first post content image being lazy-loaded or an image further down the page being marked as a |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6010 |
* high priority. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6011 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6012 |
if ( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6013 |
'the_content' !== $context && doing_filter( 'the_content' ) || |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6014 |
'widget_text_content' !== $context && doing_filter( 'widget_text_content' ) || |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6015 |
'widget_block_content' !== $context && doing_filter( 'widget_block_content' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6016 |
) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6017 |
/** This filter is documented in wp-includes/media.php */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6018 |
return apply_filters( 'wp_get_loading_optimization_attributes', $loading_attrs, $tag_name, $attr, $context ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6019 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6020 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6021 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6022 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6023 |
* Add `decoding` with a value of "async" for every image unless it has a |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6024 |
* conflicting `decoding` attribute already present. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6025 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6026 |
if ( 'img' === $tag_name ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6027 |
if ( isset( $attr['decoding'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6028 |
$loading_attrs['decoding'] = $attr['decoding']; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6029 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6030 |
$loading_attrs['decoding'] = 'async'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6031 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6032 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6033 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6034 |
// For any resources, width and height must be provided, to avoid layout shifts. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6035 |
if ( ! isset( $attr['width'], $attr['height'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6036 |
/** This filter is documented in wp-includes/media.php */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6037 |
return apply_filters( 'wp_get_loading_optimization_attributes', $loading_attrs, $tag_name, $attr, $context ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6038 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6039 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6040 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6041 |
* The key function logic starts here. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6042 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6043 |
$maybe_in_viewport = null; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6044 |
$increase_count = false; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6045 |
$maybe_increase_count = false; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6046 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6047 |
// Logic to handle a `loading` attribute that is already provided. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6048 |
if ( isset( $attr['loading'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6049 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6050 |
* Interpret "lazy" as not in viewport. Any other value can be |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6051 |
* interpreted as in viewport (realistically only "eager" or `false` |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6052 |
* to force-omit the attribute are other potential values). |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6053 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6054 |
if ( 'lazy' === $attr['loading'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6055 |
$maybe_in_viewport = false; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6056 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6057 |
$maybe_in_viewport = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6058 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6059 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6060 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6061 |
// Logic to handle a `fetchpriority` attribute that is already provided. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6062 |
if ( isset( $attr['fetchpriority'] ) && 'high' === $attr['fetchpriority'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6063 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6064 |
* If the image was already determined to not be in the viewport (e.g. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6065 |
* from an already provided `loading` attribute), trigger a warning. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6066 |
* Otherwise, the value can be interpreted as in viewport, since only |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6067 |
* the most important in-viewport image should have `fetchpriority` set |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6068 |
* to "high". |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6069 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6070 |
if ( false === $maybe_in_viewport ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6071 |
_doing_it_wrong( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6072 |
__FUNCTION__, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6073 |
__( 'An image should not be lazy-loaded and marked as high priority at the same time.' ), |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6074 |
'6.3.0' |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6075 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6076 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6077 |
* Set `fetchpriority` here for backward-compatibility as we should |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6078 |
* not override what a developer decided, even though it seems |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6079 |
* incorrect. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6080 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6081 |
$loading_attrs['fetchpriority'] = 'high'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6082 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6083 |
$maybe_in_viewport = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6084 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6085 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6086 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6087 |
if ( null === $maybe_in_viewport ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6088 |
$header_enforced_contexts = array( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6089 |
'template_part_' . WP_TEMPLATE_PART_AREA_HEADER => true, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6090 |
'get_header_image_tag' => true, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6091 |
); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6092 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6093 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6094 |
* Filters the header-specific contexts. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6095 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6096 |
* @since 6.4.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6097 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6098 |
* @param array $default_header_enforced_contexts Map of contexts for which elements should be considered |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6099 |
* in the header of the page, as $context => $enabled |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6100 |
* pairs. The $enabled should always be true. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6101 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6102 |
$header_enforced_contexts = apply_filters( 'wp_loading_optimization_force_header_contexts', $header_enforced_contexts ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6103 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6104 |
// Consider elements with these header-specific contexts to be in viewport. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6105 |
if ( isset( $header_enforced_contexts[ $context ] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6106 |
$maybe_in_viewport = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6107 |
$maybe_increase_count = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6108 |
} elseif ( ! is_admin() && in_the_loop() && is_main_query() ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6109 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6110 |
* Get the content media count, since this is a main query |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6111 |
* content element. This is accomplished by "increasing" |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6112 |
* the count by zero, as the only way to get the count is |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6113 |
* to call this function. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6114 |
* The actual count increase happens further below, based |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6115 |
* on the `$increase_count` flag set here. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6116 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6117 |
$content_media_count = wp_increase_content_media_count( 0 ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6118 |
$increase_count = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6119 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6120 |
// If the count so far is below the threshold, `loading` attribute is omitted. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6121 |
if ( $content_media_count < wp_omit_loading_attr_threshold() ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6122 |
$maybe_in_viewport = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6123 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6124 |
$maybe_in_viewport = false; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6125 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6126 |
} elseif ( |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6127 |
// Only apply for main query but before the loop. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6128 |
$wp_query->before_loop && $wp_query->is_main_query() |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6129 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6130 |
* Any image before the loop, but after the header has started should not be lazy-loaded, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6131 |
* except when the footer has already started which can happen when the current template |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6132 |
* does not include any loop. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6133 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6134 |
&& did_action( 'get_header' ) && ! did_action( 'get_footer' ) |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6135 |
) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6136 |
$maybe_in_viewport = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6137 |
$maybe_increase_count = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6138 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6139 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6140 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6141 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6142 |
* If the element is in the viewport (`true`), potentially add |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6143 |
* `fetchpriority` with a value of "high". Otherwise, i.e. if the element |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6144 |
* is not not in the viewport (`false`) or it is unknown (`null`), add |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6145 |
* `loading` with a value of "lazy". |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6146 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6147 |
if ( $maybe_in_viewport ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6148 |
$loading_attrs = wp_maybe_add_fetchpriority_high_attr( $loading_attrs, $tag_name, $attr ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6149 |
} else { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6150 |
// Only add `loading="lazy"` if the feature is enabled. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6151 |
if ( wp_lazy_loading_enabled( $tag_name, $context ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6152 |
$loading_attrs['loading'] = 'lazy'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6153 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6154 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6155 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6156 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6157 |
* If flag was set based on contextual logic above, increase the content |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6158 |
* media count, either unconditionally, or based on whether the image size |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6159 |
* is larger than the threshold. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6160 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6161 |
if ( $increase_count ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6162 |
wp_increase_content_media_count(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6163 |
} elseif ( $maybe_increase_count ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6164 |
/** This filter is documented in wp-includes/media.php */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6165 |
$wp_min_priority_img_pixels = apply_filters( 'wp_min_priority_img_pixels', 50000 ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6166 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6167 |
if ( $wp_min_priority_img_pixels <= $attr['width'] * $attr['height'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6168 |
wp_increase_content_media_count(); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6169 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6170 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6171 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6172 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6173 |
* Filters the loading optimization attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6174 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6175 |
* @since 6.4.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6176 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6177 |
* @param array $loading_attrs The loading optimization attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6178 |
* @param string $tag_name The tag name. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6179 |
* @param array $attr Array of the attributes for the tag. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6180 |
* @param string $context Context for the element for which the loading optimization attribute is requested. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6181 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6182 |
return apply_filters( 'wp_get_loading_optimization_attributes', $loading_attrs, $tag_name, $attr, $context ); |
19 | 6183 |
} |
6184 |
||
6185 |
/** |
|
6186 |
* Gets the threshold for how many of the first content media elements to not lazy-load. |
|
6187 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6188 |
* This function runs the {@see 'wp_omit_loading_attr_threshold'} filter, which uses a default threshold value of 3. |
19 | 6189 |
* The filter is only run once per page load, unless the `$force` parameter is used. |
6190 |
* |
|
6191 |
* @since 5.9.0 |
|
6192 |
* |
|
6193 |
* @param bool $force Optional. If set to true, the filter will be (re-)applied even if it already has been before. |
|
6194 |
* Default false. |
|
6195 |
* @return int The number of content media elements to not lazy-load. |
|
6196 |
*/ |
|
6197 |
function wp_omit_loading_attr_threshold( $force = false ) { |
|
6198 |
static $omit_threshold; |
|
6199 |
||
6200 |
// This function may be called multiple times. Run the filter only once per page load. |
|
6201 |
if ( ! isset( $omit_threshold ) || $force ) { |
|
6202 |
/** |
|
6203 |
* Filters the threshold for how many of the first content media elements to not lazy-load. |
|
6204 |
* |
|
6205 |
* For these first content media elements, the `loading` attribute will be omitted. By default, this is the case |
|
6206 |
* for only the very first content media element. |
|
6207 |
* |
|
6208 |
* @since 5.9.0 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6209 |
* @since 6.3.0 The default threshold was changed from 1 to 3. |
19 | 6210 |
* |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6211 |
* @param int $omit_threshold The number of media elements where the `loading` attribute will not be added. Default 3. |
19 | 6212 |
*/ |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6213 |
$omit_threshold = apply_filters( 'wp_omit_loading_attr_threshold', 3 ); |
19 | 6214 |
} |
6215 |
||
6216 |
return $omit_threshold; |
|
6217 |
} |
|
6218 |
||
6219 |
/** |
|
6220 |
* Increases an internal content media count variable. |
|
6221 |
* |
|
6222 |
* @since 5.9.0 |
|
6223 |
* @access private |
|
6224 |
* |
|
6225 |
* @param int $amount Optional. Amount to increase by. Default 1. |
|
6226 |
* @return int The latest content media count, after the increase. |
|
6227 |
*/ |
|
6228 |
function wp_increase_content_media_count( $amount = 1 ) { |
|
6229 |
static $content_media_count = 0; |
|
6230 |
||
6231 |
$content_media_count += $amount; |
|
6232 |
||
6233 |
return $content_media_count; |
|
6234 |
} |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6235 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6236 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6237 |
* Determines whether to add `fetchpriority='high'` to loading attributes. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6238 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6239 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6240 |
* @access private |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6241 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6242 |
* @param array $loading_attrs Array of the loading optimization attributes for the element. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6243 |
* @param string $tag_name The tag name. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6244 |
* @param array $attr Array of the attributes for the element. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6245 |
* @return array Updated loading optimization attributes for the element. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6246 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6247 |
function wp_maybe_add_fetchpriority_high_attr( $loading_attrs, $tag_name, $attr ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6248 |
// For now, adding `fetchpriority="high"` is only supported for images. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6249 |
if ( 'img' !== $tag_name ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6250 |
return $loading_attrs; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6251 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6252 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6253 |
if ( isset( $attr['fetchpriority'] ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6254 |
/* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6255 |
* While any `fetchpriority` value could be set in `$loading_attrs`, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6256 |
* for consistency we only do it for `fetchpriority="high"` since that |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6257 |
* is the only possible value that WordPress core would apply on its |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6258 |
* own. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6259 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6260 |
if ( 'high' === $attr['fetchpriority'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6261 |
$loading_attrs['fetchpriority'] = 'high'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6262 |
wp_high_priority_element_flag( false ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6263 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6264 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6265 |
return $loading_attrs; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6266 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6267 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6268 |
// Lazy-loading and `fetchpriority="high"` are mutually exclusive. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6269 |
if ( isset( $loading_attrs['loading'] ) && 'lazy' === $loading_attrs['loading'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6270 |
return $loading_attrs; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6271 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6272 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6273 |
if ( ! wp_high_priority_element_flag() ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6274 |
return $loading_attrs; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6275 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6276 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6277 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6278 |
* Filters the minimum square-pixels threshold for an image to be eligible as the high-priority image. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6279 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6280 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6281 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6282 |
* @param int $threshold Minimum square-pixels threshold. Default 50000. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6283 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6284 |
$wp_min_priority_img_pixels = apply_filters( 'wp_min_priority_img_pixels', 50000 ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6285 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6286 |
if ( $wp_min_priority_img_pixels <= $attr['width'] * $attr['height'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6287 |
$loading_attrs['fetchpriority'] = 'high'; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6288 |
wp_high_priority_element_flag( false ); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6289 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6290 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6291 |
return $loading_attrs; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6292 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6293 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6294 |
/** |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6295 |
* Accesses a flag that indicates if an element is a possible candidate for `fetchpriority='high'`. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6296 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6297 |
* @since 6.3.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6298 |
* @access private |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6299 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6300 |
* @param bool $value Optional. Used to change the static variable. Default null. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6301 |
* @return bool Returns true if high-priority element was marked already, otherwise false. |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6302 |
*/ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6303 |
function wp_high_priority_element_flag( $value = null ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6304 |
static $high_priority_element = true; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6305 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6306 |
if ( is_bool( $value ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6307 |
$high_priority_element = $value; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6308 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6309 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6310 |
return $high_priority_element; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
6311 |
} |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6312 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6313 |
/** |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6314 |
* Determines the output format for the image editor. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6315 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6316 |
* @since 6.7.0 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6317 |
* @access private |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6318 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6319 |
* @param string $filename Path to the image. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6320 |
* @param string $mime_type The source image mime type. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6321 |
* @return string[] An array of mime type mappings. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6322 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6323 |
function wp_get_image_editor_output_format( $filename, $mime_type ) { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6324 |
$output_format = array( |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6325 |
'image/heic' => 'image/jpeg', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6326 |
'image/heif' => 'image/jpeg', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6327 |
'image/heic-sequence' => 'image/jpeg', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6328 |
'image/heif-sequence' => 'image/jpeg', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6329 |
); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6330 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6331 |
/** |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6332 |
* Filters the image editor output format mapping. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6333 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6334 |
* Enables filtering the mime type used to save images. By default HEIC/HEIF images |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6335 |
* are converted to JPEGs. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6336 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6337 |
* @see WP_Image_Editor::get_output_format() |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6338 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6339 |
* @since 5.8.0 |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6340 |
* @since 6.7.0 The default was changed from an empty array to an array |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6341 |
* containing the HEIC/HEIF images mime types. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6342 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6343 |
* @param string[] $output_format { |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6344 |
* An array of mime type mappings. Maps a source mime type to a new |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6345 |
* destination mime type. By default maps HEIC/HEIF input to JPEG output. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6346 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6347 |
* @type string ...$0 The new mime type. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6348 |
* } |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6349 |
* @param string $filename Path to the image. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6350 |
* @param string $mime_type The source image mime type. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6351 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6352 |
return apply_filters( 'image_editor_output_format', $output_format, $filename, $mime_type ); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
6353 |
} |