首页 > 解决方案 > 如何在赫斯提亚主题中显示自定义字段

问题描述

我想在帖子页面上显示我的自定义字段,就在列出的帖子中作者的详细信息、日期和帖子的任何其他元数据旁边。

我已经在 Magazinenp 主题 (ID:, Pages:, Format:) 中完成了此操作,这三个都是自定义字段并成功显示在帖子页面上。基本上在 Magazinenp 主题中,我在 templates-parts .parts .entry-meta.php 中添加代码评论 div

<?php echo get_post_meta($post->ID, ‘ID:’, true); ?>
<?php echo get_post_meta($post->ID, ‘Format:’, true); ?>
<?php echo get_post_meta($post->ID, ‘Pages:’, true); ?>

它工作正常。

但在 Hestia 主题上,不知道将这段代码放在哪里。

请向我建议任何其他代码或任何相关内容。

标签: phpwordpressadvanced-custom-fieldscustom-fields

解决方案


推荐阅读