服务器之家

服务器之家 > 正文

Wordpress 显示主题图片的实现代码

时间:2019-09-29 15:08     来源/作者:Wordpress建站网

代码如下:


<?php 

//Put this in functions.php 

function get_primary_image($id, $size){ 
$featured = wp_get_attachment_image_src( get_post_thumbnail_id($id), $size, false); 
if($featured){ 
$childURL = $featured['0']; 
}else{ 
$children = get_children(array('post_parent' => $id, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => 1)); 
reset($children); 
$childID = key($children); 
//$childURL = wp_get_attachment_url($childID); 
$childArray = wp_get_attachment_image_src($childID, $size, false); 
$childURL = $childArray['0']; 
if(empty($childURL)){ 
$childURL = get_bloginfo('template_url')."/images/default.png"; 


return($childURL); 



//Run this in the loop (or any place you'd like - as long as you have an ID to feed it..) 
//First argument is the ID.. 
//Second argument is the size.. It'll handle 'large', 'medium', 'thumbnail' or even 

'array(100, 100)'.. 
get_primary_image(get_the_ID(), 'large'); 

?> 

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部