php-如何在WooCommerce评论表单上添加“评论标题”字段?

我想将自定义字段添加到WooCommerce上的评论表单中,如下图所示:
php-如何在WooCommerce评论表单上添加“评论标题”字段?

然后像这样获取标题的输出:
php-如何在WooCommerce评论表单上添加“评论标题”字段?

我只知道如何通过添加以下代码在single-product-reviews.php文件上创建一个新字段:

$comment_form['comment_field'] .= '<p class="comment-form-title"><label for="title">' . esc_html__( 'Review title', 'woocommerce' ) . '&nbsp;<span class="required">*</span></label><input id="title" name="title" type="text" aria-required="true" required></input></p>';

但是,如何将其保存在数据库中以及如何在注释内容上方输出此标题?

编辑:
我已经尝试了许多方法,直到通过在子主题的functions.php上编写此代码来实现所需的功能为止.

1)在评论评论表单上添加自定义字段“评论标题”:

function add_review_title_field_on_comment_form() {
    echo '<p class="comment-form-title uk-margin-top"><label for="title">' . __( 'Review title', 'text-domain' ) . '</label><input class="uk-input uk-width-large uk-display-block" type="text" name="title" id="title"/></p>';
}
add_action( 'comment_form_logged_in_after', 'add_review_title_field_on_comment_form' );
add_action( 'comment_form_after_fields', 'add_review_title_field_on_comment_form' );

2)将该字段值保存在数据库的wp_commentmeta表上:

add_action( 'comment_post', 'instacraftcbd_review_title_save_comment' );
function instacraftcbd_review_title_save_comment( $comment_id ){
    if( isset( $_POST['title'] ) )
      update_comment_meta( $comment_id, 'title', esc_attr( $_POST['title'] ) );
}

3)使用以下方法检索该字段的输出值:

var $title = get_comment_meta( $comment->comment_ID, "title", true );
echo $title;

现在唯一缺少的是,如何将该字段的输出放在注释文本或审阅文本之前?

解决方法:

自己找到解决方案太好了,这是我在寻找所需的答案,也许可以为您提供帮助!

1)在父主题或子主题上转到您的functions.php,然后在下面粘贴该代码,以在评论注释表单上添加自定义字段“评论标题”:

function add_review_title_field_on_comment_form() {
    echo '<p class="comment-form-title uk-margin-top"><label for="title">' . __( 'Review title', 'text-domain' ) . '</label><input class="uk-input uk-width-large uk-display-block" type="text" name="title" id="title"/></p>';
}
add_action( 'comment_form_logged_in_after', 'add_review_title_field_on_comment_form' );
add_action( 'comment_form_after_fields', 'add_review_title_field_on_comment_form' );

2)通过在我们的最后一个代码上方添加以下代码,将该字段值保存在数据库的wp_commentmeta表上:

add_action( 'comment_post', 'save_comment_review_title_field' );
function save_comment_review_title_field( $comment_id ){
    if( isset( $_POST['title'] ) )
      update_comment_meta( $comment_id, 'title', esc_attr( $_POST['title'] ) );
}

3)如果要检索该字段的输出值,请使用以下代码:

var $title = get_comment_meta( $comment->comment_ID, "title", true );
echo $title;

注意:它仅适用于评论循环!

4)要在每个注释文本之前添加该字段输出,您必须在functions.php上创建一个新函数,如下所示:

function get_review_title( $id ) {
    $val = get_comment_meta( $id, "title", true );
    $title = $val ? '<strong class="review-title">' . $val . '</strong>' : '';
    return $title;
}

然后确保将下面的代码添加到该WooCommerce模板文件review.php中,或者可以使用woocommerce_review_before_comment_meta钩子,但是在我的情况下,我已经编写了该代码:
回声get_review_title($comment-> comment_ID);

刚过

do_action(‘woocommerce_review_before_comment_meta’,$comment);

希望对您有所帮助!

上一篇:php-在Woocommerce 3中通过ajax提交并在结帐时创建订单


下一篇:php-通过WP_Query中的自定义Woocommerce产品排序