Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $i = 1; // Start from 1
  2.  
  3. if ($ajax_query->have_posts()) :
  4. while ($ajax_query->have_posts()) :
  5. $ajax_query->the_post();
  6.  
  7. update_post_meta( get_the_ID(), 'the_custom_field', $i++ );
  8. // $i++ will be the specific number for each my post.
  9.  
  10. endwhile;
  11. endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement