$number = iseet($_POST['_number']) ? $_POST['_number'] : '';
, вместо iseet - isset.<input type="text" name="post" id="post" placeholder="Должность" value="<?php echo get_the_author_meta( '_post' ,$user_id);?>">
. Обратите внимание на имя и идентификатор - они должны быть как имя кастомного мета-поля, то есть вот так: <input type="text" name="_post" id="_post" placeholder="Должность" value="<?php echo get_the_author_meta( '_post' ,$user_id);?>">
И так во всех кастомных полях.update_user_meta($user_id, '_post', $post );
. И так со всеми кастомными полями.<?php
global $current_user;
$user = get_user_by(“login”, $current_user->user_login);
$user_id = $user->ID;
?>
<input type=“text” name=“post” id=“post placeholder=“Должность” value=“<?php get_the_author_meta(“_post”, $user_id);?>”>
<?php
/**
Template Name: customnaya-stranica
*/
get_header(); ?>
<!-- Здесь твой кусок кода, который ты хочешь вставить -->
<?php get footer(); ?>
<a href = "<?php echo get_permalink($id); ?>" target="_blank"></a>
, где $id - id нужной страницы или название страницы ($id = 30 или $id = "stranica") <div class="coupon">
<label for="coupon_code"><?php esc_html_e( 'Coupon:', 'woocommerce' ); ?></label>
<input type="text" name="coupon_code" class="input-text" id="coupon_code" value="" placeholder="<?php esc_attr_e( 'Coupon code', 'woocommerce' ); ?>" /> <button type="submit" class="button" name="apply_coupon" style="margin-top: 0; margin-left: 50px;" value="<?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?>"><?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?></button>
<?php do_action( 'woocommerce_cart_coupon' ); ?>
</div>
<button type="submit" class="button" name="apply_coupon" style="margin-top: 0; margin-left: 50px;" value="<?php esc_attr_e( 'Your Text', 'woocommerce' ); ?>"><?php esc_attr_e( 'Your Text', 'woocommerce' ); ?></button>
<button type="submit" class="button" name="apply_coupon" style="margin-top: 0; margin-left: 50px;" value="Your Text">Your Text</button>