1

为了使用我的自定义图像而不是为帖子选择的“特色图像”,我应该在 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 }; ?>
4

1 回答 1

0

您将在自定义字段中添加图像 URL 或附件 ID,并使用该函数get_post_meta获取值并在主题中打印图像。

但是,使用像Advanced Custom Fields和它的Image Field这样的插件会更容易。

于 2013-08-29T20:12:54.603 回答