get_post_galleries_images( int|WP_Post $post ): array
Retrieves the image srcs from galleries from a post’s content, if present.
Description
See also
Parameters
Return
array A list of lists, each containing image srcs parsed.
from an expanded shortcode
Source
File: wp-includes/media.php
.
View all references
function get_post_galleries_images( $post = 0 ) {
$galleries = get_post_galleries( $post, false );
return wp_list_pluck( $galleries, 'src' );
}
Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
A simple example of how to append the raw image URLs to the content of any post or page that has at least one gallery.