WordPress中調試縮圖的相關PHP函數使用解析_php技巧

來源:互聯網
上載者:User

the_post_thumbnail
the_post_thumbnail 在 WordPress 中主要用來列印文章中設定的縮圖,而 get_the_post_thumbnail 函數可以將你需要的 HTML 程式碼以字串的形式返回。

the_post_thumbnail 函數的使用

the_post_thumbnail( $size , $attr)

函數參數

  • $size 是指你想要的縮圖類型 預設是 ‘post-thumbnail' 也就是特色映像
  • $attr 映像img標籤中的屬性設定。

the_post_thumbnail 函式宣告

/** * Display Post Thumbnail. * * @since 2.9.0 * * @param int $size Optional. Image size. Defaults to 'post-thumbnail', which theme sets using set_post_thumbnail_size( $width, $height, $crop_flag );. * @param string|array $attr Optional. Query string or array of attributes. */function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) { echo get_the_post_thumbnail( null, $size, $attr );}get_the_post_thumbnail 函式宣告 * Retrieve Post Thumbnail. * * @since 2.9.0 * * @param int $post_id Optional. Post ID. * @param string $size Optional. Image size. Defaults to 'post-thumbnail'. * @param string|array $attr Optional. Query string or array of attributes. */function get_the_post_thumbnail( $post_id = null, $size = 'post-thumbnail', $attr = '' ) { $post_id = ( null === $post_id ) ? get_the_ID() : $post_id; $post_thumbnail_id = get_post_thumbnail_id( $post_id ); $size = apply_filters( 'post_thumbnail_size', $size ); if ( $post_thumbnail_id ) { do_action( 'begin_fetch_post_thumbnail_html', $post_id, $post_thumbnail_id, $size ); // for "Just In Time" filtering of all of wp_get_attachment_image()'s filters if ( in_the_loop() )  update_post_thumbnail_cache(); $html = wp_get_attachment_image( $post_thumbnail_id, $size, false, $attr ); do_action( 'end_fetch_post_thumbnail_html', $post_id, $post_thumbnail_id, $size ); } else { $html = ''; } return apply_filters( 'post_thumbnail_html', $html, $post_id, $post_thumbnail_id, $size, $attr );

set_post_thumbnail_size
set_post_thumbnail_size 函數是 WordPress 中設定特色映像大小的一個函數也是 add_image_size 函數的一個簡單的應用。為了更好的突出特色映像的使用, WordPress 自 2.9.0 版開始,便有了本函數。

set_post_thumbnail_size 函數的使用
與 add_image_size 函數使用大概類似,只是該函數只針對特色映像進行設定。

set_post_thumbnail_size( $width, $height, $crop)

參數詳解

  • $width 映像寬度
  • $height 映像高度
  • $crop 是否按照高寬剪裁映像

執行個體

set_post_thumbnail_size(100,0,true);

注意:當高度和寬度任意一個為0時, WP 將自動適應另一個值進行縮圖產生工作。

函式宣告

/** * Registers an image size for the post thumbnail * * @since 2.9.0 */function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) { add_image_size( 'post-thumbnail', $width, $height, $crop );

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.