تابع ووکامرسی woocommerce_wp_hidden_input نمایش فیلد ورودی مخفی
تابع ووکامرسی woocommerce_wp_hidden_input – نمایش فیلد ورودی مخفی
Syntax – سینتکس
woocommerce_wp_hidden_input( (array) $field );
Parameters – پارامتر ها (1)
- 1- $field (array)
Usage – نحوه استفاده
if ( !function_exists( 'woocommerce_wp_hidden_input' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/admin/wc-meta-box-functions.php'; } // The field. $field = array(); // NOTICE! Understand what this does before running. $result = woocommerce_wp_hidden_input($field);
Defined – محل تعریف
/includes/admin/wc-meta-box-functions.php
function woocommerce_wp_hidden_input( $field ) { global $thepostid, $post; $thepostid = empty( $thepostid ) ? $post->ID : $thepostid; $field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true ); $field['class'] = isset( $field['class'] ) ? $field['class'] : ''; echo ' '; }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر