我知道这需要定制,但不知道在哪里编辑。
我使用 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'),
);
?>