【发布时间】:2013-08-16 17:14:54
【问题描述】:
我应该在 Wordpress 中使用什么自定义字段才能使用我的自定义图片而不是为帖子选择的“特色图片”?
此代码来自自定义页面模板,该模板用作博客首页并显示所有帖子:
<?php $thumb = '';
$width = 184;
$height = 184;
$classtext = '';
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
$thumb = $thumbnail["thumb"]; ?>
<?php if ( $thumb <> '' && !$et_ptemplate_showthumb ) { ?>
<div class="et_pt_thumb alignleft">
<?php print_thumbnail($thumb, $thumbnail[""], $titletext, $width, $height, $classtext); ?>
<a href="<?php the_permalink(); ?>"><span class="overlay"></span></a>
</div> <!-- end .thumb -->
<?php }; ?>
【问题讨论】:
-
很抱歉对您的其他问题如此严格。我绝对应该表现出更多的同情心。请不要太私人化。然而,考虑一些建议是个好主意。不管怎样,我只想说对不起。希望您解决了您的问题。
标签: wordpress