wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_post_galleries_images › WordPress Function

Seit3.6.0
Veraltetn/v
get_post_galleries_images ( $post = 0 )
Parameter:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global `$post`.
    Erforderlich: Nein
    Standard:
Siehe:
Gibt zurück:
  • (array) A list of lists, each containing image srcs parsed. from an expanded shortcode
Definiert in:
Codex:

Retrieves the image srcs from galleries from a post's content, if present.



Quellcode

function get_post_galleries_images( $post = 0 ) {
	$galleries = get_post_galleries( $post, false );
	return wp_list_pluck( $galleries, 'src' );
}