meta.php 637 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Post metadata template
  4. *
  5. * @package vamtam/consulting
  6. */
  7. ?>
  8. <div class="post-meta">
  9. <nav class="clearfix">
  10. <?php get_template_part( 'templates/post/meta/author' ) ?>
  11. <?php if ( ! post_password_required() ) : ?>
  12. <?php get_template_part( 'templates/post/meta/comments' ) ?>
  13. <?php get_template_part( 'templates/post/meta/tax' ) ?>
  14. <?php endif ?>
  15. <?php if ( ! is_single() ) : ?>
  16. <div class="blog-buttons">
  17. <?php edit_post_link( '<span class="icon">' . vamtam_get_icon( 'pencil' ) . '</span><span>' . esc_html__( 'Edit', 'vamtam-consulting' ) . '</span>' ) ?>
  18. </div>
  19. <?php endif ?>
  20. </nav>
  21. </div>