国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > CMS建站 > 正文

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

2020-03-22 19:09:08
字體:
來源:轉載
供稿:網友
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.0function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) { add_image_size( 'post-thumbnail', $width, $height, $crop );PHP教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 武鸣县| 龙川县| 芦溪县| 滨州市| 隆子县| 阜新市| 泰兴市| 汉中市| 伊春市| 荣成市| 广饶县| 志丹县| 始兴县| 泰兴市| 唐河县| 沧源| 苍溪县| 中西区| 邳州市| 平陆县| 临安市| 乌兰县| 淮北市| 新邵县| 剑川县| 平果县| 望谟县| 祁阳县| 丰台区| 尖扎县| 宜良县| 肥乡县| 察隅县| 普陀区| 裕民县| 锡林浩特市| 滨海县| 正阳县| 常熟市| 穆棱市| 库伦旗|