do_action( "{$component}_cover_image_uploaded", int $item_id , string $name , string $cover_url , int $feedback_code )
Fires if the new cover image was successfully uploaded.
Description Description
The dynamic portion of the hook will be members in case of a user’s cover image, groups in case of a group’s cover image. For instance: Use add_action( ‘members_cover_image_uploaded’ ) to run your specific code once the user has set his cover image.
Parameters Parameters
- $item_id
-
(int) Inform about the item id the cover image was set for.
- $name
-
(string) Filename.
- $cover_url
-
(string) URL to the image.
- $feedback_code
-
(int) If value not 1, an error occured.
Source Source
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Added $cover_url, $name, $feedback_code arguments. |
2.4.0 | Introduced. |