Show recent post from 2 difrnt custom post catigory
-
I am trying to show the most recent post from two difrnt custom posts catigories. Below is the code that I am trying to use but it is not showing anything. Does anyone have an Idea of what I did wrong. i think it is somthing simple that I am missing thank you.
<?php $wp_query = new WP_Query(array('showposts' => 1, 'post_type' => array('outtakes&outtake_category=outdoor-recreation', 'adirondack_almanac&adirondack_almanac_category=outdoor-recreation'))); while( have_posts() ) : the_post();?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php if ( has_post_thumbnail()): the_post_thumbnail( 'feed-fixed' ); endif; ?></a> <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> <?php echo wp_trim_words( get_the_excerpt(), 20 ); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">>>More</a> <?php endwhile; ?>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Show recent post from 2 difrnt custom post catigory’ is closed to new replies.