Multiples post of different categories.
-
Hi, i’m new in modifying templates since every template have their “things”. Now i’m trying to customize Pinboard template-portfolio-four-col.php which is this
?><?php get_header(); ?> <?php global $pinboard_page_template; ?> <?php $pinboard_page_template = 'template-portfolio-four-col.php'; ?> <?php if( pinboard_get_option( 'location' ) ) : ?> <?php pinboard_current_location(); ?> <?php endif; ?> <div id="container"> <section id="content" class="column onecol"> <?php pinboard_category_filter( pinboard_get_option( 'portfolio_cat' ) ); ?> <?php $args = array( 'cat' => pinboard_get_option( 'portfolio_cat' ), 'posts_per_page' => get_option( 'posts_per_page' ), 'paged' => max( 1, get_query_var( 'paged' ) ) ); ?> <?php global $wp_query, $wp_the_query; ?> <?php $wp_query = new WP_Query( $args ); ?> <?php if( $wp_query->have_posts() ) : ?> <div class="entries"> <?php while( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> </div><!-- .entries --> <?php pinboard_posts_nav(); ?> <?php else : ?> <?php pinboard_404(); ?> <?php endif; ?> <?php wp_reset_postdata(); ?> <?php $wp_query = $wp_the_query; ?> </section><!-- #content --> <div class="clear"></div> </div><!-- #container --> <?php get_footer(); ?>
into displaying something like this
Portfolio_cat
SubCategory 1
–>Post1
–>Post2
–>Post3
SubCategory 2
–>Post1
–>Post2
SubCategory n
–>Post nWhat i mean is that i want to populate all those post with the subcategories as titles in the portfolio_cat, is it possible?
Thanks for the help
- The topic ‘Multiples post of different categories.’ is closed to new replies.