index.md
1 week ago
tiny_image_before_compression.md
1 week ago
tiny_replace_with_picture.md
10 months ago
tiny_image_before_compression.md
22 lines
| 1 | # tiny_image_before_compression |
| 2 | |
| 3 | Action that runs before compressing an single attachment. |
| 4 | |
| 5 | **Location:** `src/class-tiny-image.php` |
| 6 | **Since:** 3.7.0 |
| 7 | |
| 8 | ## Arguments |
| 9 | |
| 10 | 1. `int $attachment_id` - The attachment ID. |
| 11 | |
| 12 | ## Example |
| 13 | |
| 14 | ```php |
| 15 | add_action( |
| 16 | 'tiny_image_before_compression', |
| 17 | function ( $id ) { |
| 18 | // notify system of compression |
| 19 | } |
| 20 | ); |
| 21 | ``` |
| 22 |