在最新版本的WordPress中,如果我添加了以下代码以将自定义字段包含到我的函数中。php文件。。。
function add_comment_fields($fields) {
$fields[\'source\'] = \'<p class="comment-form-source ast-col-xs-12 ast-col-sm-12 ast-col-md-4 ast-col-lg-4"><label for="source" class="screen-reader-text">\' . __( \'Related Publishing Source\' ) . \'</label>\' .
\'<input id="source" name="source" type="text" value="" placeholder="Publishing Source" size="30" aria-required="true" /></p>\';
return $fields;
}
add_filter(\'comment_form_default_fields\',\'add_comment_fields\');
...“我该怎么做?”;“显示结果”;是否将此自定义字段添加到每个已发布评论的评论页面?
我在看get_comments function, 举个这样的例子。。。。
<?php
$args = array(
\'user_id\' => 1, // use user_id
);
$comments = get_comments( $args );
foreach ( $comments as $comment ) :
echo $comment->comment_author . \'<br />\' . $comment->comment_content;
endforeach;
但这与我的wordpress提供的OOTB评论有关。我们如何以同样的方式显示新的自定义字段?
我发现this article 从2011年开始,我将努力实现自己的目标。当时,WordPress的意义发生了巨大的变化。WordPress 5+有2020年版的那篇文章吗。。。?
非常感谢!