我应该在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 }; ?>
答案 0 :(得分:0)
您可以在Custom Field中添加图片网址或附件ID,然后使用函数get_post_meta
获取值并在主题中打印图片。
但是,使用像Advanced Custom Fields及其Image Field这样的插件会更容易。