Display multiple category posts on a page in wordpress

10,025

Solution 1

<?php 
if(isset($_POST['submit']))
{
    $categories = $_POST['category'];

    print_r($categories);   
}
?>
<form action="" method="post">
    <select name="category[]" size="5" multiple="multiple">
        <option value="1">Red</option>
        <option value="2">Green</option>
        <option value="3">Blue</option>
        <option value="4">Yellow</option>
        <option value="5">Orange</option>
        <option value="6">Purple</option>
        <option value="7">Megento</option>
        <option value="8">Green</option>
        <option value="9">White</option>
        <option value="10">Black</option>
    </select>
    <input type="submit" name="submit" value="Submit" />
</form>

Note use of [] in here -

Solution 2

<?php 

$categoryids = array(3,6,8,19);

$args = array(
'numberposts'     => 20,
'category__in'    => $categoryids,
'orderby'         => 'post_date',
'order'           => 'DESC',
'post_type'       => 'photo',
'post_status'     => 'publish' );

$posts_array = get_posts( $args );

?>



<!-- The carousel -->
<div class="scrolimageview">
    <div class="prvdiv"><a href="javascript: void(0)" id="gallery-prev"><img src="<?php bloginfo( 'template_url' ); ?>/images/prev.png" width="40"/></a></div>
    <div id="gallery-wrap">
        <ul style="width: 2068px; left: -188px;" id="gallery">
            <?php foreach ($posts_array as $postd): ?>
            <?php
            $customd = get_post_custom($postd->ID);
            $attached_photo_filed = $customd["attached_photo"][0];
            $attached_photod = str_replace($postd->ID . '_', $postd->ID . '_thumb_',$attached_photo_filed);
            $imaged = $upload_dir['baseurl'] . '/photos/' . $attached_photod;
            ?>
            <li><a href="<?php get_bloginfo('url')?>/photo-details?id=<?php echo $postd->ID; ?>"><img src="<?php echo $imaged; ?>" alt=""></a></li>
            <?php endforeach; ?>
        </ul>
    </div>
    <div class="prvdiv1" style="float:right"><a href="javascript: void(0)" id="gallery-next"><img src="<?php bloginfo( 'template_url' ); ?>/images/next.png"/></a></div>
</div>

This code is from one of my project running live. So it's 100% working, please let me know if you fall into any trouble with it.

Share:
10,025
Dinesh Chandra
Author by

Dinesh Chandra

Hello, I am a PHP Professional. I have experience in various PHP based Frameworks like ZEND,CakePHP,Wordpress,Moodle,Zurmo2,V-Tiger6,Magento1,Magento2. I am interested to give E-commerce related solutions using magento2 by customizing functionalities by developing custom modules/plugins.

Updated on June 05, 2022

Comments

  • Dinesh Chandra
    Dinesh Chandra almost 2 years

    I want to display posts for multiple categories. I have created a MULTISELECT drop down of all categories using code below:

    <form method="get" action="<?php bloginfo('home');?>" >
        <select name="cat" multiple> 
         <option value=""><?php echo esc_attr(__('Please Select Your Choice')); ?></option> 
         <?php 
          $categories=  get_categories('show_count=0&orderby=name&echo=0&hierarchical=true&depth=1&taxonomy=category&exclude=1'); 
          foreach ($categories as $category) {
    
            $option = "<option value=$category->term_id>";
            $option .= ucfirst($category->cat_name);
            $option .= '</option>';
            echo $option;
          }
         ?>
        </select>
    <input type="submit" id="searchsubmit" value="Search" name="submit"/>   
    </form>
    

    Whenever i selects more than one category, I can see all cat ids in url like: http://abcd.com/?cat=7&cat=8&cat=9 But it displays only last category posts using archieve.php file. I want to display all selected category posts on the page.

    Thanks in advance.

  • Dinesh Chandra
    Dinesh Chandra over 12 years
    Thanks for the code. This code works well. But in my case category ids in array should not be static. I want to pass dynamic ids to this array. How do i get multiple cat ids from url.? Example: abcd.com/?cat=7&cat=8&cat=9.. In this url i want to get cat ids and display some posts related to these ids.? If i am using $_GET['cat'], It is providing me last cat id.
  • Samik Chattopadhyay
    Samik Chattopadhyay over 12 years
    You need to provide [] to get an array from the GET or POST result from the form. like this - <select name="category[]" size="5" multiple="multiple">
  • Zeshan
    Zeshan over 3 years
    for passing dynamic ids. URL should be abcd.com/?cat=7,8,9 And for getting the value from URL $category_array = explode(',', sanitize_text_field($_GET['cat']));