返回介绍

get_post_gallery()

发布于 2017-09-10 23:53:27 字数 3612 浏览 1140 评论 0 收藏 0

get_post_gallery( int|WP_Post $post,  bool $html = true )

Check a specified post’s content for gallery and, if present, return the first


description


参数

$post

(int|WP_Post) (Optional) Post ID or WP_Post object. Default is global $post.

$html

(bool) (Optional) Whether to return HTML or data. Default is true.

Default value: true


返回值

(string|array) Gallery data and srcs parsed from the expanded shortcode.


源代码

File: wp-includes/media.php

function get_post_gallery( $post = 0, $html = true ) {
	$galleries = get_post_galleries( $post, $html );
	$gallery = reset( $galleries );

	/**
	 * Filters the first-found post gallery.
	 *
	 * @since 3.6.0
	 *
	 * @param array       $gallery   The first-found post gallery.
	 * @param int|WP_Post $post      Post ID or object.
	 * @param array       $galleries Associative array of all found post galleries.
	 */
	return apply_filters( 'get_post_gallery', $gallery, $post, $galleries );
}

更新日志

Versiondescription
3.6.0Introduced.

相关函数

Uses

  • wp-includes/plugin.php: apply_filters()
  • wp-includes/media.php: get_post_galleries()
  • wp-includes/media.php: get_post_gallery

Used By

  • wp-includes/media.php: get_post_gallery_images()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 1You must log in to vote on the helpfulness of this note Contributed by Julien Liabeuf

    If there is no gallery present in the page, the function will return false (boolean).

  2. Example
    Output each image in a gallery with our own custom image class when using data output and not HTML:

    
    <?php
    /* The loop */
    while ( have_posts() ) : the_post();
    	if ( $gallery = get_post_gallery( get_the_ID(), false ) ) :
    		// Loop through all the image and output them one by one.
    		foreach ( $gallery['src'] AS $src ) {
    	                ?>                
    	                <img src="<?php echo $src; ?>" class="my-custom-class" alt="Gallery image" />
    			<?php
    		}
    	endif;
    endwhile;
    ?>
    

    Example data output

    
    array (size=3)
      'link' => string 'file' (length=4)
      'ids' => string '423,424,425,426' (length=15)
      'src' => 
        array (size=4)
          0 => string 'http://www.yoursite.com/wp-content/uploads/2013/10/1296136694836-150x150.jpg' (length=85)
          1 => string 'http://www.yoursite.com/wp-content/uploads/2013/10/1315981706292-150x150.jpg' (length=85)
          2 => string 'http://www.yoursite.com/wp-content/uploads/2013/10/fate-stay-night-446-wall1200-150x150.jpg' (length=100)
          3 => string 'http://www.yoursite.com/wp-content/uploads/2013/10/GpTq3-150x150.jpg' (length=77)
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文