Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <div class="clientele">
  2. <section>
  3. <img src="<?php echo get_template_directory_uri(); ?>/img/client.png" />
  4. <h2><?php $field = get_field_object("client"); echo $field['label']; ?></h2>
  5. <p><?php echo $field['value']; ?></p>
  6. </section>
  7. <section>
  8. <img src="<?php echo get_template_directory_uri(); ?>/img/task.png" />
  9. <h2><?php $field = get_field_object("task"); echo $field['label']; ?></h2>
  10. <p><?php echo $field['value']; ?></p>
  11. </section>
  12. <section>
  13. <img src="<?php echo get_template_directory_uri(); ?>/img/brand.png" />
  14. <h2><?php $field = get_field_object("brand"); echo $field['label']; ?></h2>
  15. <p><?php echo $field['value']; ?></p>
  16. </section>
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement