最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WordPress中調(diào)試縮略圖的相關(guān)PHP函數(shù)使用解析

 更新時(shí)間:2016年01月07日 14:20:46   作者:稍息少年  
這篇文章主要介紹了WordPress中調(diào)試縮略圖的相關(guān)PHP函數(shù)使用解析,包括使用set_post_thumbnail_size來(lái)調(diào)整縮略圖的大小,需要的朋友可以參考下

the_post_thumbnail
the_post_thumbnail 在 WordPress 中主要用來(lái)打印文章中設(shè)定的縮略圖,而 get_the_post_thumbnail 函數(shù)可以將你需要的 HTML 代碼以字符串的形式返回。

the_post_thumbnail 函數(shù)的使用

the_post_thumbnail( $size , $attr)

函數(shù)參數(shù)

  • $size 是指你想要的縮略圖類(lèi)型 默認(rèn)是 ‘post-thumbnail' 也就是特色圖像
  • $attr 圖像img標(biāo)簽中的屬性設(shè)置。

the_post_thumbnail 函數(shù)聲明

/**
 * 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 函數(shù)聲明
 * 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 函數(shù)是 WordPress 中設(shè)置特色圖像大小的一個(gè)函數(shù)也是 add_image_size 函數(shù)的一個(gè)簡(jiǎn)單的應(yīng)用。為了更好的突出特色圖像的使用, WordPress 自 2.9.0 版開(kāi)始,便有了本函數(shù)。

set_post_thumbnail_size 函數(shù)的使用
與 add_image_size 函數(shù)使用大概類(lèi)似,只是該函數(shù)只針對(duì)特色圖像進(jìn)行設(shè)置。

set_post_thumbnail_size( $width, $height, $crop)

參數(shù)詳解

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

實(shí)例

set_post_thumbnail_size(100,0,true);

注意:當(dāng)高度和寬度任意一個(gè)為0時(shí), WP 將自動(dòng)適應(yīng)另一個(gè)值進(jìn)行縮略圖生成工作。

函數(shù)聲明

/**
 * 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 );

 

相關(guān)文章

最新評(píng)論

峨边| 台安县| 额济纳旗| 上饶市| 麻阳| 阿鲁科尔沁旗| 射阳县| 上杭县| 康平县| 陈巴尔虎旗| 鸡泽县| 即墨市| 叙永县| 武功县| 元朗区| 贺兰县| 称多县| 彩票| 阜平县| 禹城市| 鹿邑县| 景德镇市| 金寨县| 磐石市| 北川| 汶上县| 西乌珠穆沁旗| 塔河县| 紫阳县| 嘉鱼县| 高尔夫| 仪陇县| 全南县| 微博| 桑植县| 农安县| 肇东市| 云霄县| 西畴县| 密山市| 安宁市|