From what I gather all you need to do is query the 3 posts and step though each one using the_post(). I have not used it like this so not 100% that is how it works.
the_post() Retrieves the next post, sets up the post, sets the ‘in the loop’ property to true.
$project_query = array(
'posts_per_page' => 3,
'post_type' => 'projects',
'taxonomy' => 'project-category'
);
query_posts ( $project_query ); while ( have_posts() ) :
//Post 1
the_post();
the_title();
the_content();
//Post 2
the_post();
the_title();
//Post 3
the_post();
the_title();
endwhile;
Related Posts:
- Working with Next and Prev links in Single Taxonomy Templates
- Back, Next, and Previous links for the REFERRING term archive
- Previous/Next custom post links within custom taxonomy
- Can the Next/Prev Post links be ordered by menu order or by a meta key?
- Filter next_post_link() and previous_post_link() by meta_key?
- How can I get next/ previous post links to order by a filter (by the last word of the title)?
- How can I get next post id after current post id for custom post type
- Problem excluding category from get_next_post
- specify meta_key / meta_value condition for prev_post_link and next_post_link
- Using previous_post_link and next_post_link to wrap around post sequence
- Custom Taxonomies: Multiple Hierarchical Permailnks For A Single Post + Prev/Next Links
- next_post_link and previous_post_link in custom post type single page, in same non-custom category
- Next and Previous Posts of Same Parent
- Modify previous and next post links to current Authors Other posts
- Why are previous_post_link/next_post_link skipping some posts?
- Add Previous/Next Buttons to CPT Single Pages Only
- Custom Posts and Posts – next_post_link and previous_post_link not working together
- Include “Scheduled” (“Future”) Posts in WordPress Post Navigation ( previous_post_link, next_post_link ) for a Specific Custom Post Type
- How to get next post link of child custom post type from parent post and get next post link of parent post from the last child post?
- Prev/Next Navigation on Single Post Disappeared for Custom Post Type
- get_previous_post_link and get_next_post_link of custom post type that share custom field value
- Next/Previous Post Links in single-[custom-post-type].php file
- show previous/next post orderer by title in custom post types
- previous_posts_link returns null when querying custom post type
- Advanced search form with filters for custom taxonomies and custom fields
- Show Custom Taxonomy Inside Custom Menu
- Custom Taxonomy’s Label to change the text appearing in Appearance > Menu
- Check if a custom taxonomy archive page is being displayed
- How to limit the number of terms (terms acts like categories)
- Why does a custom post type need the ”hierarchical’ args setting?
- Permalink rewrite with custom post type and custom taxonomy
- Semantic URL Custom Post Type and Taxonomies permalinks
- Displaying Posts Related to Other Posts by a Taxonomy Term?
- Custom Post Types – Titles as Taxonomies
- Is slug “type” reserved and can’t be used in taxonomy rewrite?
- Using pre_get_posts to Filter Posts
- Query for custom post type objects in a taxonomy and with a meta value
- Get post type from taxonomy or category page
- get_categories() for only CPT
- Next and Previous links on a single taxonomy page only link to same term
- Add nonexisting pages to navigation
- Custom Post Custom Taxonomy Data Not Saving in Edit Screen
- CPT Search Form with Taxonomy filter & Or
- WP 3.0.5 – Custom posts matching 2 taxonomies
- Custom Post Type Loop within Shortcode
- How can you handle rewrite rules for custom post types with option to filter on custom taxonomy terms?
- Custom Post Type – Display Categories & Tags In Dashboard list
- How do I make a custom taxonomy for a CPT appear inbetween title and editor boxes?
- Display CPT posts based on specific taxonomy
- Filtering WP_Query Dynamically on the Front-End
- Why get_posts() not returning only selected category posts from Custom Post Type?
- How to use custom taxonomies to reference complex relationships?
- Taxonomy custom post type URL
- How do I display the taxonomy for a custom post type in an array
- WP Rewrite Rule Issue while using Custom post type & taxonomy
- How to edit this code to get the categories in achieve page?
- Get general taxonomy name for a Custom Post Type
- Lists custom taxonomy terms that has specific custom field value assigned to the term (not post)
- List Taxonomy Terms based on another Taxonomy
- Multiple tag cloud filtering
- Best way to organize book-page structure
- Get url.com/post_type/taxonomy/term work!
- Custom Post type category pages template and loop
- Three Most Recent Posts, One Per Term
- How to get WordPress term attached to the Post?
- REST filters only firing when I have a param set
- SEO Concerns With Rewrite Rules
- Empty taxonomy items for CPT in admin grid
- How to get_term_meta on single custom post?
- WordPress custom post type and taxonomies
- Display Custom Post Types Glossary
- How to fetch custom post types with its full data on wordpress?
- Taxonomies exists – but not showing up
- Change permalinks for custom post type based on taxonomy term
- WP_Query order custom post type with certain meta key value by post modified date
- Cant’ Display Custom Post Type Title Base on Tax Terms
- Writing a custom Glossary plugin
- How to show custom posts
- Get a list of custom post type (property) when clicked on custom taxonomy 1 (rent or sale) from custom taxonomy 2 (city) page
- How to divide Subcategories into pages of parent category wordpress
- How to show Custom Post Types under Taxonomy in a new WordPress page template?
- Display Posts that fit a certain criteria on Category pages
- Displaying all posts by category and showing content on click
- How do I find out which (page) template file my custom child post is looking for?
- How to search through all child taxonomies using WP_Query?
- Custom post type and custom taxonomy key lenght & query performance
- Custom Post Taxonomy Template Not Loading Properly
- Change the term based on the value of a $variable using wp_update_post in submitting a form
- Show ajax form resuslts in page
- Exclude Posts in a Given Category
- Custom permalink with custom taxonomies for custom post type
- Front page url permalink
- If taxonomy show class of active
- Custom Post Type Permalinks Problem
- Issue on Adding Taxonomy to Custom Post Type Using Function
- Show custom taxonomies in admin panel under custom post type
- Trying to display next and previous set of posts on separate page (not parent page)
- Display associated taxonomy child name on single CPT page
- How is it possible to list custom post types by “category” like with simple posts?
- Show custom category archive as front page and remove taxonomy slug from urls