Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying posts within the loop.
  4. *
  5. * @package GeneratePress
  6. */
  7.  
  8. if ( ! defined( 'ABSPATH' ) ) {
  9. exit; // Exit if accessed directly.
  10. }
  11. ?>
  12.  
  13.  
  14. <?php
  15. // first, get the image object returned by ACF
  16. $image_object = get_field('team_member_image');
  17. // and the image size you want to return
  18. $image_size = 'large';
  19. // now, we'll exctract the image URL from $image_object
  20. $image_url = $image_object['sizes'][$image_size];
  21. $rand_number = rand(10,100);
  22. $post_id = get_the_ID();
  23. ?>
  24.  
  25. <div class="team-archive grid-33 tablet-grid-50 mobile-grid-50">
  26. <?php $team_member_image = get_field( 'team_member_image' ); ?>
  27. <?php if ( $team_member_image ) { ?>
  28. <a href="<?php the_permalink(); ?>" data-remodal-target="modal-team-<?php echo $post_id;?>" alt="<?php the_title_attribute(); ?>"><img src="<?php echo $image_url; ?>" alt="<?php echo $team_member_member_['alt']; ?>" /></a>
  29. <?php } ?>
  30. </div>
  31.  
  32. <div class="remodal" data-remodal-id="modal-team-<?php echo $post_id;?>">
  33. <a data-remodal-action="close" class="remodal-close"></a>
  34. <main id="main" <?php generate_do_element_classes( 'main' ); ?>>
  35. <div id="team-single">
  36. <div class="grid-50 spacer-bottom-30-mobile">
  37. <?php $team_member_image = get_field( 'team_member_image' ); ?>
  38. <?php if ( $team_member_image ) { ?>
  39. <img src="<?php echo $image_url; ?>" alt="<?php echo $team_member_image['alt']; ?>" />
  40. <?php } ?>
  41. <a href="mailto:<?php the_field( 'team_email' ); ?>" target="_blank"><button class="width-100">Contact Me</button></a>
  42. </div>
  43. <div class="grid-50">
  44. <h1><?php the_field( 'team_name' ); ?></h1>
  45. <h2><?php the_field( 'team_title' ); ?></h2>
  46. <p><?php the_field( 'team_description' ); ?></p>
  47. </div>
  48. </div>
  49. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement