洛杉矶MC机房 高速低价18元起

DIYVM

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

提示:如果官网是英文页面,建议使用谷歌浏览器能同步翻译页面。点击下载【谷歌浏览器最新绿色便携版】
注意:部分文章发布时间较长,可能存在未知因素,购买时建议在本站搜索商家名称,先充分了解商家动态。
交流:唯一投稿邮箱:hostvps@88.com。

代码如下:

<?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'); 

?> 

About 贝壳

【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。

 收藏 (0) 打赏

您可以选择一种方式赞助本站

支付宝扫一扫赞助

微信钱包扫描赞助

本文链接:贝壳主机网 » WordPress 显示主题图片的实现代码

分享到: 生成海报
香港/美国/国内高速VPS
切换注册

登录

忘记密码 ?

切换登录

注册

我们将发送一封验证邮件至你的邮箱, 请正确填写以完成账号注册和激活