當前位置: 首頁>>代碼示例>>PHP>>正文


PHP wpshop_tools::trunk方法代碼示例

本文整理匯總了PHP中wpshop_tools::trunk方法的典型用法代碼示例。如果您正苦於以下問題:PHP wpshop_tools::trunk方法的具體用法?PHP wpshop_tools::trunk怎麽用?PHP wpshop_tools::trunk使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在wpshop_tools的用法示例。


在下文中一共展示了wpshop_tools::trunk方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: foreach

			<div class="wps-cart-item-close"></div>
		</li>

	<?php 
if (!empty($order_items)) {
    ?>
		<?php 
    foreach ($order_items as $order_item_id => $order_item) {
        ?>
		<li id="wps_product_<?php 
        echo $order_item_id;
        ?>
" class="wps-clearfix cart-item" >
			<div class="wps-cart-item-content">
				<?php 
        echo wpshop_tools::trunk($order_item['item_name'], 50);
        ?>
				<?php 
        $product_attribute_order_detail = wpshop_attributes_set::getAttributeSetDetails(get_post_meta($order_item['item_id'], WPSHOP_PRODUCT_ATTRIBUTE_SET_ID_META_KEY, true));
        $output_order = array();
        if (count($product_attribute_order_detail) > 0 && is_array($product_attribute_order_detail)) {
            foreach ($product_attribute_order_detail as $product_attr_group_id => $product_attr_group_detail) {
                foreach ($product_attr_group_detail['attribut'] as $position => $attribute_def) {
                    if (!empty($attribute_def->code)) {
                        $output_order[$attribute_def->code] = $position;
                    }
                }
            }
        }
        $variation_attribute_ordered = wpshop_products::get_selected_variation_display($order_item['item_meta'], $output_order, 'cart');
        ksort($variation_attribute_ordered['attribute_list']);
開發者ID:fedeB-IT-dept,項目名稱:fedeB_website,代碼行數:31,代碼來源:order-content.php


注:本文中的wpshop_tools::trunk方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。