dosgy00204 2019-07-28 14:55
浏览 51
已采纳

如何在Wordpress循环中显示4个Bootstrap列[关闭]

i want to display a wordpress category post inside bootstrap 4 columns..

I want the output just like this link. https://addapinch.com/ scroll at the bottom and you will find the exact output which i want..

  • 写回答

1条回答 默认 最新

  • douya1248 2019-07-28 15:53
    关注

    I don't like to give end to end solution, but here is the one part from my code which loops through the categories and shows them on the page. You can re-edit them a bit and you will get a desired output:

    <?php
    echo '<ul class="nav nav-tabs" role="tablist">';
    
    $args = array(
        'hide_empty'=> 1,
        'orderby' => 'name',
        'order' => 'ASC'
    );
    
    $categories = get_categories($args);
    
    foreach($categories as $category) { 
    
        echo '<li><a href="#' . $category->name.'" role="tab" data-toggle="tab">' .      
        $category->name.'</a></li>';
        $cat_name = $category->name;
    
    } 
    echo '</ul>';
    echo '<div class="tab-content">';
    foreach($categories as $category) { 
        echo '<div class="tab-pane" id="' . $category->name.'">';
    
    $the_query = new WP_Query(array(
        'post_type' => 'acme_product',
        'posts_per_page' => 100,
        'category_name' => $category->slug
    )); 
    while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    
    <h1><?php the_title(); ?></h1>
    
    <?php endwhile; 
    wp_reset_postdata();
    wp_reset_query();
    ?>   
    
    <?php } 
    echo '</div>';
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号