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

首頁 > 網站 > 建站經驗 > 正文

WordPress主題添加特色圖像功能

2024-04-25 20:42:01
字體:
來源:轉載
供稿:網友

wordpress從2.9版開始支持文章特色圖像功能,使用wordpress的特色圖像功能,會使用網站更加規范,提高頁面加載速度,如何讓主題支持特色圖像功能很簡單。

第一步,添加主題對特色圖像功能的支持

將下面代碼主題 functions.php 文件中:

// 添加特色圖像功能

add_theme_support('post-thumbnails');

set_post_thumbnail_size(130, 100, true); // 圖片寬度與高度

其中圖片的長寬可以自行修改。

第二步,添加特色圖像調用代碼

將下面的代碼添加到主題模板的適當位置,比如分類歸檔模板archive.php主循中:

<?php

if (has_post_thumbnail()) {

// 顯示特色圖像

the_post_thumbnail();

} else {

// 設置特色圖像

$attachments = get_posts(array(

'post_type' => 'attachment',

'post_mime_type'=>'image',

'posts_per_page' => 0,

'post_parent' => $post->ID,

'order'=>'ASC'

));

if ($attachments) {

foreach ($attachments as $attachment) {

set_post_thumbnail($post->ID, $attachment->ID);

break;

}

// 顯示特色圖像

the_post_thumbnail();

}

} ?>

代碼說明,如果未手動設置特色圖像,那么會自動調用第一個圖片附件的“縮略圖”作為特色圖像,并顯示它。

注:代碼中所使用的WP函數:

has_post_thumbnail()

set_post_thumbnail()

the_post_thumbnail()

可以到官方Codex查看詳細使用說明,并根據需要加以修改。

調用顯示特色圖像還可以使用另一種方法:

如果你認為將特色圖像調用代碼加到主題模板主循環中看上去會很亂,可以將下面的代碼添加到主題functions.php 文件中:

// 特色圖像

add_filter('the_content', 'set_featured_image_from_attachment');

function set_featured_image_from_attachment($content) {

global $post;

if (has_post_thumbnail()) {

// 顯示特色圖像

$content = the_post_thumbnail() . $content;

} else {

// 獲取和設置特色圖像

$attachments = get_children(array(

'post_parent' => $post->ID,

'post_status' => 'inherit',

'post_type' => 'attachment',

'post_mime_type' => 'image',

'order' => 'ASC',

'orderby' => 'menu_order'

));

if ($attachments) {

foreach ($attachments as $attachment) {

set_post_thumbnail($post->ID, $attachment->ID);

break;

}

// 顯示特色圖像

$content = the_post_thumbnail() . $content;

}

}

return $content;

}

這段代碼基本原理與上面的相同 ,除了使用get_children過濾the_content(),而不是get_posts()。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 五峰| 林州市| 临猗县| 武夷山市| 寿宁县| 巴青县| 沈丘县| 白河县| 莎车县| 崇信县| 图木舒克市| 苏尼特右旗| 固始县| 信丰县| 南投市| 卢氏县| 栖霞市| 汤原县| 铅山县| 沙雅县| 芦山县| 蒙阴县| 政和县| 永福县| 西城区| 阳城县| 开封市| 德格县| 安陆市| 张家港市| 武冈市| 鄂尔多斯市| 德庆县| 永泰县| 霍州市| 旌德县| 景德镇市| 石景山区| 岳阳市| 九江市| 金华市|