| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function serializeFeaturedImage(&$item) : void |
||
| 43 | { |
||
| 44 | if (!is_object($item)) { |
||
| 45 | return null; |
||
| 46 | } |
||
| 47 | |||
| 48 | $item->featured = [ |
||
| 49 | 'thumbnail' => wp_get_attachment_image_src(get_post_thumbnail_id($item->ID), 'thumbnail'), |
||
| 50 | 'medium' => wp_get_attachment_image_src(get_post_thumbnail_id($item->ID), 'medium'), |
||
| 51 | 'large' => wp_get_attachment_image_src(get_post_thumbnail_id($item->ID), 'full'), |
||
| 52 | 'xlarge' => wp_get_attachment_image_src(get_post_thumbnail_id($item->ID), 'full'), |
||
| 53 | ]; |
||
| 54 | } |
||
| 55 | } |
||
| 56 |