Wordpress网站特色图片更换问题

时间:2013-07-05 06:45:54

标签: php html wordpress

我在我的Wordpress网站上工作,我在页面模板中插入了"特色图片"在页面顶部。我已经隔离了控制它的PHP代码。

        $thumb = '';
        $width = (int) apply_filters('et_page_image_width',621);
        if ( is_page_template( 'page-full.php' ) || $fullwidth ) $width = (int) apply_filters('et_page_image_full_width', 960);
        $height = (int) apply_filters('et_page_image_height',320);
        $classtext = '';
        $titletext = get_the_title();
        $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Pageimage');
        $thumb = $thumbnail["thumb"];

现在,如果我删除此代码,它将删除页面顶部的图像,这很好,但我想用媒体库中的图像替换它。是否可以更改代码,以便从"编辑页面>自定义字段"中提取图像。 Wordpress页面编辑器中的部分?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

添加以下内容:

if ($thumb) { echo $thumb;} else { echo 'some other image here';}

使用新查询替换“此处的其他图像”以获取替代图像。

希望这有帮助吗?