I’d use the current_post
property of the WP_Query
class instance, which in your case is the $query
. So here I check if $query->current_post
is greater than or equals to 1
:
<div class="carousel-item col-md-4 <?php echo $query->current_post >= 1 ? '' : 'active'; ?>">
Resource: https://codex.wordpress.org/Class_Reference/WP_Query#Properties
Related Posts:
- Can I force WP_Query to return no results?
- Multiple WP_Query loops with Pagination
- WP_Query vs get_posts
- WP_Query and next_posts_link
- Order posts by ID in the given order
- Too slow when using both ‘tax_query’ and ‘meta_query’ both in WP_Query
- Get array of posts from the current archive page loop
- How-to exclude terms from the main query the most performant way?
- Pagination with WP_Query is buggy – working for some pages, but not the others
- Get the number of posts from the current page results
- How can I save an array from a random post sequence for later use?
- Group posts by custom field
- Pagination/infinite scroll with WP_Query and multiple loops
- Ajax Infinite Scroll In Custom WP_Query Loop Not Working
- How to change a custom query into a standard loop?
- Transient pagination not working properly
- get_posts() seemingly ignoring post_type
- Injecting content with $wp_query->current_post restarts from zero on paged pages. How to inject content after X posts, regardless of pagination?
- How to show the posts of some category first, and then all other
- wordpress query in header won’t reset and corrupts other loops
- Pagination stops at page 6
- Paginated HTML Sitemap
- Why does the_content not work like others for a set post id?
- How to limit total number of posts in wp query loop?
- 2 loops on page – one with orderby rand second orderby date
- Undefined WP_Query::has_posts()?
- Create ONE callback for all page templates, post filter queries + paginated pages, triggering pagination via AJAX
- Pagination is broken and I need help fixing it
- How to use WP_Query to display many posts?
- Counter problem, infinite loop when post_per_page equals X
- How to vary post loop results layout and resume?
- Five posts from a category in footer
- Get a post from other loop each n-posts in the main loop
- Loop returning only 1 result
- How to get all unique categories for posts in loop?
- WordPress Loop and $post
- Using the_post_thumbnail resets current loop item ID
- Order by empty custom field
- Excluding pages in WP_query using ACF
- reset to main loop doesnt work
- Some doubts about how the main query and the custom query works in this custom theme?
- Post loop for all taxonomy terms
- New WP_Query loop in admin causes problems
- Only display post if published in last 24 hours?
- Need to convert string of term ids into comma separated integers for use in an arguments array
- How to remove the most recent post from $the_query
- WP_Query loop else statement not executing
- How do I get my custom query to work with search results after the first page?
- Issue with front page navigation after upgrading to 3.4
- Check for the main query from the template
- Exclude recently updated post from custom WP_Query using multiple loops
- get_posts output always same post
- How to use WP_Query() on single.php?
- difference between querying database and using the loop
- Stomping WP_Query in author archive to facilitate pagination with custom queries
- How to make posts unqueryable/unpublish posts where ACF relationship field is an unpublished post? [closed]
- Loop increase in while loop not working
- posts archive page – closing WP_Query loop correctly [closed]
- has_excerpt() not working inside wp_query
- AJAX Breaking Offset Argument In WP Query
- Continue or break the while loop
- Loop posts based on permalink term
- Save (and exclude) posts from loop to use in another loop on page
- Get all posts with empty meta_value
- Check if a post has term inside loop
- How to Order By Two Custom Fields?
- Display specific page (that is child) content on parent page
- Does putting queries within loops cause an issue on WordPress?
- Function using get_posts() with tax_query not working when called from functions.php
- How to change the default post type over the loop?
- Paginate pages with dynamic query
- WP_Query loop doen’t work with my custom taxonomy
- How to make the ‘request’ filter work?
- show most viewed post
- How do I stop the same post showing multiple times in a archive?
- how to get custom attachment url?
- How can I use WP_Query to sort ‘event’ custom post type by date?
- Display posts side by side with custom query
- WP_Query & Duplicate entries
- WordPress For Loop Prints Unwanted Extra Paragraph Element
- Calling a function with WP_Query only ever brings the first result
- query_posts() doesn’t seem to be called in my page
- Some doubts about how the main query and the custom query works in this custom theme?
- Pagination returns 404 after page 20
- Ordering Posts by parent category, name ascending
- WP_Query a custom field value bringing back 0 results
- Set Transient on CPT
- Create multiple sections for all categories and then queries all the posts for each of those categories
- Load 3 posts in flexslider slide [closed]
- Multiple wp_query loops showing first 5 posts on all pages instead of older posts[Resolved]
- Next / previous posts link doesn’t show up with Posts 2 Posts
- meta_query dates from an array
- Creating array to compare custom field values
- $query conflicting with other queries in the same page
- Carousel Loop only duplicating
- How to show featured post first, then separate loop for other posts
- Show linked products using wp query and woocommerce
- Standard Loop – wp_query
- Custom Wp_query loop takes very long
- Pagination only showed when no category is set in wp_query