在首页/帖子/产品中显示自定义字段或自定义分类

时间:2020-03-17 作者:learning wordpress

我在post/page/product main中添加了一些自定义字段和分类,如Type、Channels、Battery等;ACF插件,但它并没有显示在帖子页面或产品页面的前端。如何显示?

screenshot

1 个回复
SO网友:Haseeb Asif

这取决于您使用的主题是否具有显示信息的功能。通常,如果您有一个使用默认WP的自定义属性,它会显示这些属性,但对于高级自定义字段,您可能需要将代码添加到主题中。

例如,以下代码将帮助您显示字段名称和值

<?php
//https://support.advancedcustomfields.com/forums/topic/howto-show-all-acf-fields-and-there-labels/


    $fields = get_fields();
    foreach($fields as $key=>$value){?>
        <ul>
            <?php foreach( $fields as $field ): ?>
                <li><?php echo $key; ?>: <?php echo $value; ?></li>
            <?php endforeach; ?>
        </ul>
        <?php
    }
?>

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: