手机
当前位置:查字典教程网 >CMS教程 >WordPress >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 显示主题图片的实现代码】相关文章:

WordPress 无Gzip模块主机实现Gzip压缩js和css

wordpress自定义循环列表的php代码

wordpress自定义摘要截取字数的代码

WordPress 图片用单独域名储存方法

wordpress 为主题添加AJAX提交评论功能的php代码

wordpress无需插件实现拦截无中文留言的方法

IIS6.0下Wordpress 去掉 index.php 和 category 的方法小结

WordPress 的主要特点

Wordpress 企业网站的四点好处

WordPress安装前的准备工作

精品推荐
分类导航