wc_is_attribute_in_product_name()
Check if an attribute is included in the attributes area of a variation name.
Хуки из функции
Возвращает
true|false
.
Использование
wc_is_attribute_in_product_name( $attribute, $name );
- $attribute(строка) (обязательный)
- Attribute value to check for.
- $name(строка) (обязательный)
- Product name to check in.
Список изменений
С версии 3.0.2 | Введена. |
Код wc_is_attribute_in_product_name() wc is attribute in product name WC 9.3.3
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 ); }