dtxpz8785 2014-07-30 13:18
浏览 51
已采纳

使用get_terms获取类别名称

<?php  
  $categories = array('bathroom', 'bar');  

    foreach ($categories as $category) {
        $args = array( 'post_type' => 'product', 'posts_per_page' => 3, 'product_cat' => $category, 'orderby' => 'rand' );
?>

I want to make the function above a little more dynamic. In such a way that I won't have to manually add the specific categories to the $categories variable. Instead, I need something that will get only the names of the (woocommerce product) categories, and places them in an array.

I did get the list with this:

$category_list_items = get_terms( 'product_cat' );

foreach($category_list_items as $category_list_item){
    echo $category_list_item->name;
}

But I don't know how to get this list into the first function. Does anyone have an idea how to do this?

Thanks!

  • 写回答

1条回答 默认 最新

  • dongrui6787 2014-07-30 14:13
    关注

    Based on my understanding of the question, you are populating $category_list_items as an array of category_list_item objects from your application. As a result you can turn your echo into an array of category names and then pass it to your function

    $categories = []; //array to store all of your category names
    $category_list_items = get_terms( 'product_cat' );
    
    foreach($category_list_items as $category_list_item){
        if(! empty($category_list_item->name) ){
            array_push($categories, $category_list_item->name);
        }
    }
    

    Once this foreach has been run, you will now have a categories array populated to pass to your above function.

    Hope this helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用ADS设计一款的射频功率放大器
  • ¥15 怎么求交点连线的理论解?
  • ¥20 软件开发方法学习来了
  • ¥15 微信小程序商城如何实现多商户收款 平台分润抽成
  • ¥15 HC32L176调试了一个通过TIMER5+DMA驱动WS2812B
  • ¥15 cocos的js代码调用wx.createUseInfoButton问题!
  • ¥15 关于自相关函数法和周期图法实现对随机信号的功率谱估计的matlab程序运行的问题,请各位专家解答!
  • ¥15 Python程序,深度学习,有偿私
  • ¥15 扫描枪扫条形码出现问题
  • ¥35 poi合并多个word成一个新word,原word中横版没了.