تابع ووکامرسی wc_attribute_orderby دریافت کردن ویژگی های محصول بر اساس ورودی
تابع ووکامرسی wc_attribute_orderby – ویژگی های محصول بر اساس ورودی رشته ای
Syntax – سینتکس
(string) wc_attribute_orderby( (string) $name );
Parameters – پارامتر ها (1)
- 1- $name (string)
Usage – نحوه استفاده
if ( !function_exists( 'wc_attribute_orderby' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-attribute-functions.php'; } // The name. $name = ''; // NOTICE! Understand what this does before running. $result = wc_attribute_orderby($name);
Defined – محل تعریف
/includes/wc-attribute-functions.php
function wc_attribute_orderby( $name ) { global $wc_product_attributes, $wpdb; $name = str_replace( 'pa_', '', sanitize_title( $name ) ); if ( isset( $wc_product_attributes[ 'pa_' . $name ] ) ) { $orderby = $wc_product_attributes[ 'pa_' . $name ]->attribute_orderby; } else { $orderby = $wpdb->get_var( $wpdb->prepare( "SELECT attribute_orderby FROM " . $wpdb->prefix . "woocommerce_attribute_taxonomies WHERE attribute_name = %s;", $name ) ); } return apply_filters( 'woocommerce_attribute_orderby', $orderby, $name ); }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر