Wordpress显示主题图片的方法

来源:爱站网时间:2022-06-21编辑:网友分享
小编今天来给大家说说看“Wordpress显示主题图片的方法”知识点,如果你正在使用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');

?>

Wordpress显示主题图片的方法不知道朋友们都看明白了没有,觉得不错可以分享给身边有需要的朋友。想要获取更多精彩的技术文章,尽在js.aizhan.com。

上一篇:WordPress文章展示广告的设置

下一篇:wordpress传送附件出现中文文件名乱码怎么处理

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载