php - 将生日字段添加到 WooCommerce 我的帐户和管理员用户页面

标签 php wordpress woocommerce account user-data

我在下面添加了代码。生日字段显示在我的帐户页面和 WP 管理员用户页面中,但问题是日期没有保存

我目前拥有的东西

function iconic_get_account_fields() {
return apply_filters( 'iconic_account_fields', array(
    'user_url' => array(
        'type'        => 'date',
        'label'       => __( 'My Birth Date', 'iconic' ),
        'placeholder' => __( 'Date of Birth', 'iconic' ),
        'required'    => true,
    ),
) );
}
/**
* Add fields to registration form and account area.

*/
function iconic_print_user_frontend_fields() {
$fields = iconic_get_account_fields();

foreach ( $fields as $key => $field_args ) {
    woocommerce_form_field( $key, $field_args );
}
}
add_action( 'woocommerce_edit_account_form', 'iconic_print_user_frontend_fields', 10 ); // my account

 /**
 * Add fields to admin area.
 */
function iconic_print_user_admin_fields() {
$fields = iconic_get_account_fields();
?>
<h2><?php _e( 'Additional Information', 'iconic' ); ?></h2>
<table class="form-table" id="iconic-additional-information">
    <tbody>
    <?php foreach ( $fields as $key => $field_args ) { ?>
        <tr>
            <th>
                <label for="<?php echo $key; ?>"><?php echo $field_args['label']; ?></label>
            </th>
            <td>
                <?php $field_args['label'] = false; ?>
                <?php woocommerce_form_field( $key, $field_args ); ?>
            </td>
        </tr>
    <?php } ?>
    </tbody>
 </table>
 <?php
 }


 add_action( 'show_user_profile', 'iconic_print_user_admin_fields', 30 ); // admin: edit profile
 add_action( 'edit_user_profile', 'iconic_print_user_admin_fields', 30 ); // admin: edit other users

我使用的代码部分来自:

The Ultimate Guide to Adding Custom WooCommerce Registration Fields

最佳答案

以下代码将添加(并保存)自定义生日字段

  • 我的帐户 - 编辑帐户
  • 管理员用户页面 - 个人资料
// Add field - my account
function action_woocommerce_edit_account_form() {   
    woocommerce_form_field( 'birthday_field', array(
        'type'        => 'date',
        'label'       => __( 'My Birth Date', 'woocommerce' ),
        'placeholder' => __( 'Date of Birth', 'woocommerce' ),
        'required'    => true,
    ), get_user_meta( get_current_user_id(), 'birthday_field', true ));
}
add_action( 'woocommerce_edit_account_form', 'action_woocommerce_edit_account_form' );

// Validate - my account
function action_woocommerce_save_account_details_errors( $args ){
    if ( isset($_POST['birthday_field']) && empty($_POST['birthday_field']) ) {
        $args->add( 'error', __( 'Please provide a birth date', 'woocommerce' ) );
    }
}
add_action( 'woocommerce_save_account_details_errors','action_woocommerce_save_account_details_errors', 10, 1 );

// Save - my account
function action_woocommerce_save_account_details( $user_id ) {  
    if( isset($_POST['birthday_field']) && ! empty($_POST['birthday_field']) ) {
        update_user_meta( $user_id, 'birthday_field', sanitize_text_field($_POST['birthday_field']) );
    }
}
add_action( 'woocommerce_save_account_details', 'action_woocommerce_save_account_details', 10, 1 );

// Add field - admin
function add_user_birtday_field( $user ) {
    ?>
        <h3><?php _e('Birthday','woocommerce' ); ?></h3>
        <table class="form-table">
            <tr>
                <th><label for="birthday_field"><?php _e( 'Date of Birth', 'woocommerce' ); ?></label></th>
                <td><input type="date" name="birthday_field" value="<?php echo esc_attr( get_the_author_meta( 'birthday_field', $user->ID )); ?>" class="regular-text" /></td>
            </tr>
        </table>
        <br />
    <?php
}
add_action( 'show_user_profile', 'add_user_birtday_field', 10, 1 );
add_action( 'edit_user_profile', 'add_user_birtday_field', 10, 1 );

// Save field - admin
function save_user_birtday_field( $user_id ) {
    if( ! empty($_POST['birthday_field']) ) {
        update_user_meta( $user_id, 'birthday_field', sanitize_text_field( $_POST['birthday_field'] ) );
    }
}
add_action( 'personal_options_update', 'save_user_birtday_field', 10, 1 );
add_action( 'edit_user_profile_update', 'save_user_birtday_field', 10, 1 );

关于php - 将生日字段添加到 WooCommerce 我的帐户和管理员用户页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62140465/

相关文章:

php - cUrl 可以转换成 Javascript 吗?

php - 我是否以错误的方式使用了 Symfony flash 变量?

php - Wordpress/Godaddy : How can I tell if this . htaccess 中有恶意软件? wp-currentver.php

javascript - fabricjs:缩放后如何显示对象大小

html - 如何使用每个页面的 css 隐藏这个特定的 div 元素 (WP)

wordpress - 动态添加自定义产品数据作为订单上的项目元数据

php - 如何计算具有匹配 ID 的行数?

java - 页面滚动时滚动模态框

MySQL:使用 UUID(字节串)作为主键的查询不起作用

javascript - 滚动时光标替换脚本中断