Guest User

Untitled

a guest
Feb 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. $theParent = wp_get_post_parent_id(get_the_ID());
  3. if ($theParent) { ?>
  4. <div class="metabox metabox--position-up metabox--with-home-link">
  5. <p><a class="metabox__blog-home-link" href="<?php echo get_permalink($theParent); ?>">
  6. <i class="fa fa-home" aria-hidden="true"></i> Back to <?php echo get_the_title($theParent); ?></a>
  7. <span class="metabox__main"><?php the_title(); ?></span>
  8. </p>
  9. </div>
  10. <?php } ?>
Add Comment
Please, Sign In to add comment