0

我知道这需要定制,但不知道在哪里编辑。

我使用 ACF(高级自定义字段)创建了一个自定义字段。我希望它显示在我的博客元数据中(而不是在页面上)。DIVI 有作者、日期、评论、评级、类别。

ACF 有一个函数,我可以在其中调用值 $value = get_field("text_field");。我知道它可以添加到子主题 function.php 中,但需要编码方面的帮助。

下面的链接显示了如何将“上次更新”添加到我的元数据中。我需要用自定义字段替换它

将“上次更新”添加到元

元图像

编辑:我设法通过编辑我的子主题来实现它,我使用 meta_key 来显示我的自定义类别中的值。我将代码添加到显示元数据的数组中。(模块-posts-content.php)

'meta_key' => $value = the_field('custom_date_or_text'),

最后一个问题是我的自定义字段出现在元字段上方而不是与其对齐。

(来自我的主题的代码)

<?php
                    $meta_args = array(
                        'author_link'    => $show_author,
                        'author_link_by' => et_get_safe_localization( __( 'Posted by %s', 'extra' ) ),
                        'post_date'      => $show_date,
                        'date_format'    => $date_format,
                        'categories'     => $show_categories,
                        'comment_count'  => $show_comments,
                        'rating_stars'   => $show_rating,
                        'meta_key'       => $value = the_field('custom_date_or_text'),
                    );
                    ?>

最后结果

4

1 回答 1

0

尝试获取 post_meta 以及该帖子/页面模板上的 ID:

<?php $text_field = get_post_meta( get_the_ID(), 'text_field', true); ?>

<p><?php echo esc_html( $text_field );?></p>

于 2021-07-07T00:55:37.470 回答