Advertisement
Guest User

MP3198

a guest
Jun 12th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="content_area">
  3. <div class="row clearfix">
  4. <h3>Incoming</h3>
  5. <ul>
  6. <?php foreach ($wf->term->incoming_terms("keyword") as $incoming) : ?>
  7. <li><?php echo $incoming->name() ?></li>
  8. <?php endforeach; ?>
  9. </ul>
  10. <h3>Parent Incoming</h3>
  11. <ul>
  12. <?php foreach ($wf->the_term->incoming_terms("keyword", "for=relationship.parent") as $parent) : ?>
  13. <li><?php echo $parent->name() ?></li>
  14. <?php endforeach; ?>
  15. </ul>
  16. <h3>Child Incoming</h3>
  17. <ul>
  18. <?php foreach ($wf->the_term->incoming_terms("keyword", "for=relationship.child") as $child) : ?>
  19. <li><?php echo $child->name() ?></li>
  20. <?php endforeach; ?>
  21. </ul>
  22. </div>
  23. </div>
  24. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement