تابع wc_update_260_termmeta بروزرسانی ترم متا ووکامرس به نسخه 2.6.0
تابع ووکامرسی wc_update_260_termmeta – بروزرسانی ترم متا ووکامرس به نسخه 2.6.0
Syntax – سینتکس
wc_update_260_termmeta();
Usage – نحوه استفاده
if ( !function_exists( 'wc_update_260_termmeta' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-update-functions.php'; } // NOTICE! Understand what this does before running. $result = wc_update_260_termmeta();
Defined – محل تعریف
/includes/wc-update-functions.php
function wc_update_260_termmeta() { global $wpdb; /** * Migrate term meta to WordPress tables */ if ( get_option( 'db_version' ) >= 34370 && $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}woocommerce_termmeta';" ) ) { if ( $wpdb->query( "INSERT INTO {$wpdb->termmeta} ( term_id, meta_key, meta_value ) SELECT woocommerce_term_id, meta_key, meta_value FROM {$wpdb->prefix}woocommerce_termmeta;" ) ) { $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}woocommerce_termmeta" ); wp_cache_flush(); } } }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر