Woocommerce product options

时间:2019-10-28 作者:Lerry

我有自定义实现-在那里我可以添加到产品项,我可以获得如下产品项:

<?php if(!empty($cart_item[\'more_product\'])) :
                                    $first_array = array_slice($cart_item[\'more_product\'],0,4);
                                    $second_array = array_slice($cart_item[\'more_product\'],4);
                                ?>
                            <div class="products__includes">

                                <div class="products__includes__btn active">
                                    Set includes
                                </div> 
                                <div class="products__includes__wrap">
                                    <div class="products__includes__inner">
                                        <table>
                                            <tbody>
                                        <?php foreach($first_array as $piece): ?>
                                            <tr>
                                                <th><?php echo $piece[\'title\'];?></th>
                                                <th><?php echo $piece[\'count\'];?></th>
                                            </tr>
                                        <?php endforeach;?>
                                            </tbody>
                                        </table>
                                        <?php if(!empty($second_array)):?>
                                            <table>
                                                <tbody>
                                                <?php foreach($second_array as $piece): ?>
                                                    <tr>
                                                        <th><?php echo $piece[\'title\'];?></th>
                                                        <th><?php echo $piece[\'count\'];?></th>
                                                    </tr>
                                                <?php endforeach;?>
                                                </tbody>
                                            </table>
                                        <?php endif; ?>


                                    </div>  

                                </div>

                            </div>
                            <?php endif; ?>
我需要把一切都安排好,我该怎么办?

1 个回复
SO网友:Sam

在此处查看数组的所有排序可能性:https://www.php.net/manual/fr/array.sorting.php

如果要反转列表,请在此处查找array\\u reverse:https://www.php.net/manual/en/function.array-reverse.php

编辑:但您可能想手动对项目排序?

相关推荐

Options表崩溃并修复后无法访问wp-admin

我的选项表崩溃了,我成功地修复了它。但现在当我登录时,它会重定向到没有工具栏的主页,如果我键入/wp admin,我会得到“抱歉,您不允许访问此页面。”我尝试了通常的禁用插件和主题的方法。正在删除。htaccess文件。似乎什么都没用。我确实有一个5天前的DB备份,可以恢复访问,但在这段时间内做了很多更改,所以我希望以不同的方式解决这个问题。