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

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

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

Syntax – سینتکس

wc_print_notice( (string) $message, (string) $notice_type = 'success' ); 

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

  • 1- $message (string)
  • 2- $notice_type (string)

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

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

Defined – محل تعریف

/includes/wc-notice-functions.php

function wc_print_notice( $message, $notice_type = 'success' ) { 
    if ( 'success' === $notice_type ) { 
        $message = apply_filters( 'woocommerce_add_message', $message ); 
    } 
 
    wc_get_template( "notices/{$notice_type}.php", array( 
        'messages' => array( apply_filters( 'woocommerce_add_' . $notice_type, $message ) ),  
 ) ); 
} 

versions – نسخه ها

از نسخه : 2.1

نسخه فعلی : 3.0.6

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

ارسال نظر

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

contact us