wc_update_300_comment_type_index بروزرسانی نوع نظرات به نسخه 3.0.0

wc_update_300_comment_type_index بروزرسانی نوع نظرات به نسخه 3.0.0

تابع ووکامرسی wc_update_300_comment_type_index – بروزرسانی نوع نظرات به نسخه 3.0.0

Syntax – سینتکس

(null) wc_update_300_comment_type_index(); 

Usage – نحوه استفاده

if ( !function_exists( 'wc_update_300_comment_type_index' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-update-functions.php'; 
} 
 
  
// NOTICE! Understand what this does before running. 
$result = wc_update_300_comment_type_index(); 
    

Defined – محل تعریف

/includes/wc-update-functions.php

function wc_update_300_comment_type_index() { 
    global $wpdb; 
 
    $index_exists = $wpdb->get_row( "SHOW INDEX FROM {$wpdb->comments} WHERE column_name = 'comment_type' and key_name = 'woo_idx_comment_type'" ); 
 
    if ( is_null( $index_exists ) ) { 
        // Add an index to the field comment_type to improve the response time of the query 
        // used by WC_Comments::wp_count_comments() to get the number of comments by type. 
        $wpdb->query( "ALTER TABLE {$wpdb->comments} ADD INDEX woo_idx_comment_type (comment_type)" ); 
    } 
} 

versions – نسخه ها

از نسخه : 3.0.2

نسخه فعلی : 3.0.6

دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2

ارسال نظر

جهت استفاده از کد حتما از تگ pre استفاده نمایید .

contact us