wc_is_attribute_in_product_name بررسی می کند که ویژگی در نام محصول است ؟
تابع ووکامرسی wc_is_attribute_in_product_name – بررسی می کند که ویژگی در نام محصول است ؟
Syntax – سینتکس
wc_is_attribute_in_product_name( (string) $attribute, (string) $name );
Parameters – پارامتر ها (2)
- 1- $attribute (string)
- 2- $name (string)
Usage – نحوه استفاده
if ( !function_exists( 'wc_is_attribute_in_product_name' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-attribute-functions.php'; } // Attribute value to check for $attribute = ''; // Product name to check in $name = ''; // NOTICE! Understand what this does before running. $result = wc_is_attribute_in_product_name($attribute, $name);
Defined – محل تعریف
/includes/wc-attribute-functions.php
function wc_is_attribute_in_product_name( $attribute, $name ) { $is_in_name = stristr( $name, ' ' . $attribute . ', ' ) || 0 === stripos( strrev( $name ), strrev( ' ' . $attribute ) ); return apply_filters( 'woocommerce_is_attribute_in_product_name', $is_in_name, $attribute, $name ); }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر