Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function update_company_ratings_test() {
  2. global $post;
  3.  
  4. $comp_args = array(
  5. 'post_type'=>'boat-company',
  6. 'posts_per_page'=>'-1',
  7. 'post_status '=> 'publish',
  8.  
  9. );
  10.  
  11. $posts_array = get_posts( $comp_args );
  12.  
  13. if ($posts_array) {
  14. foreach( $posts_array as $post_id ){
  15.  
  16. setup_postdata($post);
  17.  
  18. $company_id = $post_id->ID;
  19.  
  20. $company_rating = 42;
  21.  
  22. update_post_meta( $company_id, 'company_rating', $company_rating, true );
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement