@@ -162,6 +162,7 @@ discard block |
||
| 162 | 162 | /** |
| 163 | 163 | * Get attachment images for a specified post and return them. Also make sure |
| 164 | 164 | * their dimensions are at or above a required minimum. |
| 165 | + * @param integer $post_id |
|
| 165 | 166 | */ |
| 166 | 167 | static function from_attachment( $post_id, $width = 200, $height = 200 ) { |
| 167 | 168 | $images = array(); |
@@ -224,7 +225,7 @@ discard block |
||
| 224 | 225 | * Check if a Featured Image is set for this post, and return it in a similar |
| 225 | 226 | * format to the other images?_from_*() methods. |
| 226 | 227 | * @param int $post_id The post ID to check |
| 227 | - * @return Array containing details of the Featured Image, or empty array if none. |
|
| 228 | + * @return integer|null containing details of the Featured Image, or empty array if none. |
|
| 228 | 229 | */ |
| 229 | 230 | static function from_thumbnail( $post_id, $width = 200, $height = 200 ) { |
| 230 | 231 | $images = array(); |
@@ -659,7 +660,6 @@ discard block |
||
| 659 | 660 | * resized and cropped image. |
| 660 | 661 | * |
| 661 | 662 | * @param string $src |
| 662 | - * @param int $dimension |
|
| 663 | 663 | * @return string Transformed image URL |
| 664 | 664 | */ |
| 665 | 665 | static function fit_image_url( $src, $width, $height ) { |