What is the difference between wp_reset_query() and wp_reset_postdata() in wordpress?
Answer Posted / Ashok Rajput
wp_reset_query() resets the global query object, such as $wp_query, to its initial state after a custom query has been run. On the other hand, wp_reset_postdata() resets the global post data object and rewinds the current post loop back to the beginning. In short, use wp_reset_query() when you want to change the main query on your WordPress site, and use wp_reset_postdata() when you need to iterate through a custom query.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers