Changeset 49016
- Timestamp:
- 09/20/2020 01:38:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-thumbnail-template.php
r48310 r49016 34 34 * @param bool $has_thumbnail true if the post has a post thumbnail, otherwise false. 35 35 * @param int|WP_Post|null $post Post ID or WP_Post object. Default is global `$post`. 36 * @param int| string $thumbnail_id Post thumbnail ID or empty string.36 * @param int|false $thumbnail_id Post thumbnail ID or false if the post does not exist. 37 37 */ 38 38 return (bool) apply_filters( 'has_post_thumbnail', $has_thumbnail, $post, $thumbnail_id ); … … 169 169 * 170 170 * @param int $post_id The post ID. 171 * @param string$post_thumbnail_id The post thumbnail ID.171 * @param int $post_thumbnail_id The post thumbnail ID. 172 172 * @param string|array $size The post thumbnail size. Image size or array of width 173 173 * and height values (in that order). Default 'post-thumbnail'. … … 187 187 * 188 188 * @param int $post_id The post ID. 189 * @param string$post_thumbnail_id The post thumbnail ID.189 * @param int $post_thumbnail_id The post thumbnail ID. 190 190 * @param string|array $size The post thumbnail size. Image size or array of width 191 191 * and height values (in that order). Default 'post-thumbnail'. … … 204 204 * @param string $html The post thumbnail HTML. 205 205 * @param int $post_id The post ID. 206 * @param string$post_thumbnail_id The post thumbnail ID.206 * @param int $post_thumbnail_id The post thumbnail ID. 207 207 * @param string|array $size The post thumbnail size. Image size or array of width and height 208 208 * values (in that order). Default 'post-thumbnail'.
Note: See TracChangeset
for help on using the changeset viewer.