تابع ووکامرسی wc_notice_count نمایش تعداد تمامی هشدار ( اعلان ) ها

تابع ووکامرسی wc_notice_count نمایش تعداد تمامی هشدار ( اعلان ) ها

تابع ووکامرسی wc_notice_count – نمایش تعداد تمامی هشدار ( اعلان ) ها

Syntax – سینتکس

(int) wc_notice_count( (string) $notice_type = '' ); 

Parameters – پارامتر ها (1)

  • 1- $notice_type (string)

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

if ( !function_exists( 'wc_notice_count' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-notice-functions.php'; 
} 
  
// The name of the notice type - either error, success or notice. [optional] 
$notice_type = ''; 
  
// NOTICE! Understand what this does before running. 
$result = wc_notice_count($notice_type); 
    

Defined – محل تعریف

/includes/wc-notice-functions.php

function wc_notice_count( $notice_type = '' ) { 
    if ( ! did_action( 'woocommerce_init' ) ) { 
        wc_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before woocommerce_init.', woocommerce ), '2.3' ); 
        return; 
    } 
 
    $notice_count = 0; 
    $all_notices = WC()->session->get( 'wc_notices', array() ); 
 
    if ( isset( $all_notices[ $notice_type ] ) ) { 
 
        $notice_count = absint( sizeof( $all_notices[ $notice_type ] ) ); 
 
    } elseif ( empty( $notice_type ) ) { 
 
        foreach ( $all_notices as $notices ) { 
            $notice_count += absint( sizeof( $all_notices ) ); 
        } 
    } 
 
    return $notice_count; 
} 

versions – نسخه ها

از نسخه : 2.1

نسخه فعلی : 3.0.6

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

ارسال نظر

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

contact us