Guest User

Untitled

a guest
May 8th, 2023
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | Source Code | 0 0
  1. function bl_get_posts_count() {
  2. // custom wp_query
  3. $args = array(
  4. 'post_type' => 'post',
  5. 'posts_per_page' => -1, // all matching posts
  6. 'meta_query' => array(
  7. array(
  8. 'key' => 'associated_winery',
  9. 'value' => get_the_ID(),
  10. // 'compare' => 'LIKE',
  11. ),
  12. ),
  13. );
  14.  
  15. $posts = new WP_Query( $args );
  16.  
  17. // return the count of posts
  18. return $posts->found_posts;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment