Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <?
  2. $id = get_the_ID();
  3. $posts = get_posts( array('post_type'=>'postTypeName','numberposts' => 500,) );
  4. $i=0;
  5. foreach( $posts as $post ){
  6. $fields = get_field('fieldName',$post->ID);
  7.  
  8. if($fields){
  9. foreach ($fields as $field) {
  10. if($id == $field->ID){?>
  11. <?php $img_team = get_field('image'); ?>
  12. <div class="team">
  13. <div class="specialists-wrapper-services">
  14. <a href="<?php the_permalink() ?>">
  15. <div class="specialist">
  16. <div class="img">
  17. <img src="<?=$img_team['url']; ?>" alt="<?=$img_team['alt']; ?>" />
  18. </div>
  19. <div class="text">
  20. <span class="fio"><?php the_title(); ?></span>
  21. <span class="dolzhnost"><?php the_field('post'); ?></span>
  22.  
  23. </div>
  24. </div>
  25. </a>
  26. </div>
  27. </div>
  28. <?$i++;}
  29. }
  30. }
  31. }
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement