show custom post from multiple array

39 Views Asked by At

I want to show all post from multiple categories via shortcode. If I use one category in shortcode attribute, it works.

<?php echo do_shortcode( '[people cat_name="lab-members"]'); ?>

But when I'm using two or three categories in shortcode attribute it doesn't work.

<?php echo do_shortcode( '[people cat_name="lab-members, advisors"]'); ?>

Here is what I'm trying

   function mmddl_people_shortcode($atts)
{
    // define attributes and their defaults
    extract(shortcode_atts(array (
                               'cat_name' => ''
                           ), $atts));

    $args = array (
        'post_type' => 'people',
        'tax_query' => array (
            array (
                'taxonomy' => 'people_category',
                'field'    => 'slug',
                'terms'    => $cat_name
            ),
        ),
    );

    // get the arguments
    $loop = new WP_Query($args);
    // the loop
    while ($loop->have_posts()) : $loop->the_post(); ?>

        <!-- team member -->
        <div id="people-<?php the_ID() ?>" <?php post_class('col-sm-6 col-md-3 wow fadeInUp'); ?> >
            <div class="team-mate">
                <h4><?php the_title(); ?></h4>
                <figure class="member-photo">
                    <!-- member photo -->
                    <?php
                    if (has_post_thumbnail()) {
                        the_post_thumbnail('full', array ('class' => 'img-responsive'));
                    } else {
                        echo '<img src="http://placehold.it/450x450" alt="' . get_the_title() . '" class="img-responsive">';
                    }
                    ?>
                </figure>
            </div>
        </div>
        <!-- // team member -->

    <?php endwhile;
}

add_shortcode('people', 'mmddl_people_shortcode');
1

There are 1 best solutions below

0
On BEST ANSWER

To pass multiple terms in a tax query, you need to specify an array. Check out the docs.

E.g., in your case:

$terms = array_map('trim', explode(',', $cat_name))

And that's what you pass as a parameter for terms.

I'm passing the resulting array through "trim", so you can specify your terms using spaces (or not) around the commas.